3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array( 'query' => 'hi', 'suggestions' => array ( 0 => 'history', 1 => 'hilton', 2 => 'hilton hhonors', 3 => 'hillary clinton', 4 => 'hickory farms', 5 => 'hip2save', 6 => 'hitler', 7 => 'hipaa', ), ); echo json_encode($array, JSON_PRETTY_PRINT) . "\n"; $array = array_values($array); echo json_encode($array, JSON_PRETTY_PRINT) . "\n";
Output for 7.1.25 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
{ "query": "hi", "suggestions": [ "history", "hilton", "hilton hhonors", "hillary clinton", "hickory farms", "hip2save", "hitler", "hipaa" ] } [ "hi", [ "history", "hilton", "hilton hhonors", "hillary clinton", "hickory farms", "hip2save", "hitler", "hipaa" ] ]

preferences:
146.48 ms | 408 KiB | 5 Q