創建可以從文件到文件使用的變量,甚至是對象到對象的最佳方式是什麼?例如:PHP自定義全局變量
設置文件將包含一個這樣的數組:如果你需要的是全球性的網站配置屬性在所有PHPS
<?php
$config = array(
'key1' => 'val1',
'key2' => 'val2'
);
?>
<?php
class config {
function get_data($file){
require_once('config/'.$file.'.php');
foreach($config as $key => $val){
$this->$key = $val;
}
}
}
?>
它真的取決於變量的用法。您可以使用會話/ cookies/db存儲等。請詳細說明或使用變量。 – 2011-03-02 04:15:56
許多許多許多其他可能的重複[讀寫配置文件](http://stackoverflow.com/questions/2237291/reading-and-writing-configuration-files) – Gordon 2011-03-02 08:07:42