如何从 httpd.conf 获取 ServerAdmin 电子邮件变量

How to get ServerAdmin email variable from httpd.conf

如何从 xampp 中的 httpd.conf 获取 ServerAdmin 电子邮件 我设置了

ServerAdmin test@gmail.com

D:\xampp\apache\conf\httpd.conf;但我不知道如何在 php.

中访问 ServerAdmin

我想在我的邮件中使用 ServerAdmin 电子邮件

$this->load->library('tes_email');
$this->test_email->from("test@gmail.com");
$this->test_email->to();//i don't know how to pass serverAdmin email in to
$this->test_email->subject("test test");
$this->test_email->message("test subject");
$this->test_email->send();

请帮帮我。

它列在附加到密钥 SERVER_ADMIN 的服务器环境变量下。

来自 $_SERVER global variable 上的文档:

'SERVER_ADMIN'

The value given to the SERVER_ADMIN (for Apache) directive in the web server configuration file. If the script is running on a virtual host, this will be the value defined for that virtual host.