久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      php怎樣關(guān)閉錯(cuò)誤報(bào)告

      php關(guān)閉錯(cuò)誤報(bào)告的方法:首先打開(kāi)php.ini配置文件;然后在文件中查找display_errors;最后將【display_errors = Off】修改成【display_errors = On】即可。

      php怎樣關(guān)閉錯(cuò)誤報(bào)告

      本文操作環(huán)境:windows10系統(tǒng)、php 7.3、thinkpad t480電腦。

      具體方法如下:

      首先找到php的配置文件,也就是php.ini;

      然后在文件中查找 ‘display_errors’,查找到 display_errors = Off 或者 display_errors = On, Off為關(guān)閉錯(cuò)誤提示,On為打開(kāi)錯(cuò)誤提示,根據(jù)需求修改即可。

      也可在php文件中加入以下代碼

      //禁用錯(cuò)誤報(bào)告 error_reporting(0); //報(bào)告運(yùn)行時(shí)錯(cuò)誤 error_reporting(E_ERROR | E_WARNING | E_PARSE); //報(bào)告所有錯(cuò)誤 error_reporting(E_ALL);

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)