3v4l.org

run code in 500+ 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:
115.26 ms | 2795 KiB | 5 Q