我對PHP的操作系統相當陌生,有些概念對我來說還是新的。從php類讀取其他文件的常量/變量
Asumming我有包括配置文件(config.php文件):
<?php
$siteName = "John's Site";
$siteEmail = "[email protected]"
$replyTo = "[email protected]"
而且我有一個簡單的類(SendMail.php),其包括:
class SendMail
{
public function sendRegistrationMail($toAddress)
{
mail($toAddress, $subject, $email, "From: Site Name <[email protected]>");
}
}
我有user.php文件,包括:
<?php
include_once ('config.php');
include_once ('SendMail.php);
//Initialize class
$sendMail = new SendMail();
我問的是,如果我可以以某種方式讀/包括config.php從發送電子郵件 而不需要硬編碼"From: Site Name <[email protected]>"
因爲我已經做了,當地址 的SendMail類,這樣我可以簡單地這樣做:
$sendMail->sendRegistrationMail("[email protected]");
,而不需要通過「從」。
希望我很清楚。 如果任何人都可以提供幫助,那就太棒了。 謝謝!
沒有任何[常量](http://php.net/manual/en/language.constants.php)在這裏定義....如果你的意思是變量,然後閱讀[變量範圍] (http://php.net/manual/en/language.variables.scope.php) –