iis7下,php顯示錯誤的方法:首先在iis7下,需配置PHP,程式碼為【display_errors = on】;然後需要在網站根目錄新增【web.config】文件,程式碼為【compilation debug="true"..】。
本教學操作環境:windows7系統、PHP5.6&&iis7版,DELL G3電腦。
iis7下,php顯示錯誤的方法:
事實上,我們都知道設定php顯示錯誤,但在iis7/7.5下,還需要額外的配置。首先看php的配置:
display_errors = on; error_reporting = E_ALL & ~E_NOTICE;
iis的配置, 注意你首先需要在你的網站根目錄添加web.config
檔案:
#程式碼如下:
<?xml version="1.0" encoding="UTF-8"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <system.web> <compilation debug="true" targetFramework="4.5"/> <httpRuntime targetFramework="4.5"/> </system.web> <system.webServer> <httpErrors errorMode="DetailedLocalOnly" existingResponse="PassThrough"></httpErrors> </system.webServer> </configuration>
#相關影片推薦:PHP影片教學
以上是iis7下,php如何顯示錯誤的詳細內容。更多資訊請關注PHP中文網其他相關文章!