时间:2021-07-01 10:21:17 帮助过:24人阅读
示例1
<?php // 文件错误 $file_name = @file ('non_existent_file') or die ("Failed in opening the file: error: '$errormsg'"); // 它用于表达 $value = @$cache[$key]; //如果索引$key不存在,它将不显示通知。 ?>
运行时错误:
PHP Notice: Undefined variable: errormsg in /home/fe74424b34d1adf15aa38a0746a79bed.php on line 5
输出:
Failed in opening the file: error: ''
示例2
<?php // 语句1 $result= $hello['123'] // 语句2 $result= @$hello['123'] ?>
它将仅执行语句1并显示通知消息
PHP Notice: Undefined variable: hello.
注意:使用@是非常糟糕的编程习惯,因为它不会使错误消失,它只是隐藏它们,并且它使调试变得更糟,因为我们无法看到我们的代码实际上有什么问题。
以上就是PHP中的@符号有什么用的详细内容,更多请关注Gxl网其它相关文章!