php基础学习--error_reporting(0)使用
error_reporting() 设置 PHP 的报错级别并返回当前级别。
?
<?php//禁用错误报告error_reporting(0);echo a;//现在不会报 变量a不存在了?>