fork download
  1. <?php
  2.  
  3. $array = new stdClass();
  4. $array->response = new stdClass();
  5. $array->response->count = 16;
  6. $array->response->items = [
  7. [
  8. "id" => "1",
  9. "is_dir"=> "true",
  10. ],
  11. [
  12. "id" => "1",
  13. "is_dir"=> "true",
  14. ],
  15. ];
  16.  
Success #stdin #stdout 0.02s 23692KB
stdin
Standard input is empty
stdout
string(89) "{"response":{"count":16,"items":[{"id":"1","is_dir":"true"},{"id":"1","is_dir":"true"}]}}"