<?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);
You have javascript disabled. You will not be able to edit any code.