0
如何通過包含類文件將值傳遞到我的類中,並將它用作該類中的$var
在PHP5中?如何將ScriptA中的值傳遞給ScriptB中的類?
到目前爲止的代碼:
// ScriptA
$cacheF=test;
include("ScriptB_MyClass.php");
$one = new MyClass(array('$cacheF'));
------------
// ScripB_MyClass.php
class MyClass {
var $cacheF;
function __construct() {
$this->cacheF = $cacheF;
return $this->cacheF = $cacheF;
}
$the_cache_path="/home/$cacheF/myfile.txt";
// execute other functions
}
我想你應該開始學習PHP的非常基本的http://www.php.net/manual/en/language.variables.basics .php – OcuS