$hello = world;$world = 'Hello';echo $hello;
The displayed result is: word, not hello?
php is executed from top to bottom, swap one or two lines to get the result you want
php is executed from top to bottom, swap one or two lines to get the result you want