php更改包含文件的变量值

时间:2016-05-25 10:57:14

标签: php

我正在学习php,如何更改包含文件的变量值?

例如:

a.php只会

$name = 'john'

b.php

require_once 'a.php'
$name = 'james' // here i am changing value of $name

c.php

echo $name //here I want to show as 'james' not 'john' , how?

0 个答案:

没有答案