After following, you can keep track of his dynamic information in a timely manner
Courses in the relevant section:PHP Global Variables - Superglobal Variables
<?php $x = 75; $y = 25; function addition() { $GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y']; } addition(); echo $z; ?>
2016-10-150个赞