3v4l.org

run code in 300+ PHP versions simultaneously
<?php $empty_string = ''; $ref = &$empty_string['x']; $ref = 'hello'; var_export($empty_string); print "\n"; $non_empty_string = 'abc'; $ref = &$non_empty_string['x']; $ref = 'hello'; var_export($non_empty_string);

preferences:
32.68 ms | 404 KiB | 5 Q