Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试解决通过 postfix 管道传输的脚本上的一些错误,当我向 Bugsnag 发送错误时,我想发送原始电子邮件。我抓住电子邮件内容
$handle = fopen("php://stdin", "r"); $email = stream_get_contents($handle);
文档说您可以使用该setMetaData函数添加自定义元数据,但在我的情况下,这仅适用于此脚本。
setMetaData
想通了。实际上,setMetaData 方法可以在脚本期间随时调用。