我是Zend框架的初學者,想做一些日誌記錄來查找錯誤。 我發現了一個example in the Zend manual:Zend-Logging:「php://輸出」在哪裏?
$logger = new Zend_Log();
$writer = new Zend_Log_Writer_Stream('php://output');
$logger->addWriter($writer);
我不知道它是寫後,我可以找到php://output
-log文件?這是一個真正的路徑,或者這只是一個例子,我必須用另一個文件名替換php://output
?
這是手動>> http://php.net/manual/en/wrappers.php.php –