fork(8) download
  1. <?php
  2.  
  3. $image_path = array('sm'=>'sm','lg'=>'lg','secondary'=>array('whatever'));
  4.  
  5. $obj = (object)$image_path;
  6.  
  7. var_dump($obj);
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
object(stdClass)#1 (3) {
  ["sm"]=>
  string(2) "sm"
  ["lg"]=>
  string(2) "lg"
  ["secondary"]=>
  array(1) {
    [0]=>
    string(8) "whatever"
  }
}