如果我有一个带有变量的 config.php 文件,就像这样......
配置.php:
$cnf['dbhost'] = "0.0.0.0";
$cnf['dbuser'] = "mysqluser";
$cnf['dbpass'] = "mysqlpass";
然后如何从另一个文件中的类访问这些变量,例如...
公司/db.class.php:
class db() {
function connect() {
mysql_connect($cnf['dbhost'], $cnf['dbuser'], $cnf['dbpass']);
}
}
$db = new db();
因此,我可以在另一个文件中使用该类,例如...
索引.php:
<html>
<?php
include('config.php');
include('inc/db.class.php');
$db->connect();
?>
</html>