インクルードクラスファイルを介してクラスに値を渡し、$var
PHP5でそのクラス内として使用するにはどうすればよいですか?
これまでのコード:
// 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
}