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 に答える