3v4l.org

run code in 300+ PHP versions simultaneously
<?php $handle = fopen('php://memory', 'w+b'); fputcsv($handle, [ 'foo bar\\', # 1 'baz quz', # 2 'x', # 3 'y', # 4 'z', # 5 'foo\\\\",bar' # 6 ]); rewind($handle); var_dump(fgetcsv($handle)); // array(6) { // [0]=> string(18) "foo bar\",baz quz"" # 1 // [1]=> string(1) "x" # 2 (was # 3) // [2]=> string(1) "y" # 3 (was # 4) // [3]=> string(1) "z" # 4 (was # 5) // [4]=> string(5) "foo\\" # 5 // [5]=> string(4) "bar"" # 6 // }
Output for git.master, git.master_jit, rfc.property-hooks
array(6) { [0]=> string(18) "foo bar\",baz quz"" [1]=> string(1) "x" [2]=> string(1) "y" [3]=> string(1) "z" [4]=> string(5) "foo\\" [5]=> string(4) "bar"" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
62.27 ms | 401 KiB | 8 Q