现在,看看我的page.php
,我会在里面解释我的问题。
<?php
$var= "<p>Hello world</p>";
function myfunction1($a){
echo $a;
}
//then
myfunction1($var);//-->OK, return "Hello world!"
//but, the thing is, i don't want to pass any argument into myfunction(),
//so i have to import the external $var into myfuntion2()
function myfunction2(nothing here){
//what's here?
}
myfunction2();//i want to do this
?>
当然,如果我将所有这些都包装在一个 CLASS 中,然后myfunction()
变成$var
(method $amp; property
OOP 风格),这些将非常容易访问!但我不想那样做!
那么,有可能吗?谁能给我一个建议?谢谢