如果我有一个需要使用$ foo的函数,
global $foo
非常不满意,
如何在没有全局的情况下获取我的函数来访问变量?是否有其他方法或方法可以做到这一点,我不知道?
答案 0 :(得分:0)
尝试这样的事情......
<?php
$name = "batman";
function get_details($name,$age){
$temp_str = "Name: ".$name."<br />Age: ".$age;
return($temp_str);
}
echo get_details($name,35); // passing through name as a variable and the age as just text...
?>
...给出
Name: batman
Age: 35