有没有办法让 # 不是 ini 文件中的注释?
Is there a way make # not a comment in ini file?
我想在本地主机上使用 Sendmail,我必须在发件人邮件中设置 SMTP。但是我的密码中有一个哈希字符 (#)。如何让它不显示为评论开头?
auth_username=email@gmail.com
auth_password=password#
来自 parse_ini_file
documentation,在 PHP 5.3.0 及更高版本的更新日志中:
Hash marks (#) should no longer be used as comments and will throw a deprecation warning if used.
我想在本地主机上使用 Sendmail,我必须在发件人邮件中设置 SMTP。但是我的密码中有一个哈希字符 (#)。如何让它不显示为评论开头?
auth_username=email@gmail.com
auth_password=password#
来自 parse_ini_file
documentation,在 PHP 5.3.0 及更高版本的更新日志中:
Hash marks (#) should no longer be used as comments and will throw a deprecation warning if used.