fork download
  1. <?php
  2.  
  3. $arr = [1, 2, 3, 'вв'];
  4.  
  5.  
  6. $string = 'a:4:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;s:3:"str";}';
  7. print_r(unserialize($string));
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
a:4:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;s:4:"вв";}Array
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => str
)