fork download
  1. <?php
  2. $data = array();
  3. $data['products'][] = array(
  4. 'product_id' => "28",
  5. 'thumb' => "x",
  6. 'name' => "name",
  7. 'description' => "abc",
  8. 'price' => "$123.00",
  9. 'special' => false,
  10. 'tax' => "$100.00",
  11. );
  12. $json = json_encode(array_values($data['products'][0]));
  13. echo $json;
Success #stdin #stdout 0.02s 23672KB
stdin
Standard input is empty
stdout
["28","x","name","abc","$123.00",false,"$100.00"]