0

如果我有一个需要使用 $foo 的函数,

并且global $foo如此不屑一顾,

我怎样才能让我的函数访问变量而不是全局的?还有其他我不知道的方法或方法吗?

4

1 回答 1

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
于 2012-11-08T11:44:36.577 回答