在我的应用程序中,我已经在 core.php 中设置了一个类似于 config 的变量,例如
核心.php
$websetting = array(
'mydomain' => $_SERVER['HTTP_HOST'],
'adminEmail' => 'admin@xyz.com',
'supportEmail' => 'support@xyz.com',
'infoEmail' => 'info@xyz.com',
'accountEmail' => 'accounts@xyz.com',
'facebook' => 'facebook.com/xyz',
'twitter' => 'twitter.com/@xyz'
);
Configure::write('WebsiteSetting', $websetting);
现在我在 webroot 的 cj 中创建了一个 morning.php 文件。所以我的路径是这样的:webroot/cj/morning.php
在 Morning.php 中,我尝试阅读Configure::read('WebsiteSetting.mydomain')
.
<?php
echo Configure::read('WebsiteSetting.mydomain');
?>
发生了什么 :