at符号(@)在PHP中用作错误控制运算符。当表达式前面带有@符号时, 该表达式可能生成的错误消息将被忽略。如果启用track_errors功能, 则由表达式生成的错误消息并将其保存在变量中$ php_errormsg。该变量将在每个错误时被覆盖。
程序1:
<
?php//File error
$file_name = @file ( 'non_existent_file' ) or
die ( "Failed in opening the file: error: '$errormsg'" );
//It is used for expression
$value = http://www.srcmini.com/@ $cache [ $key ];
//It will not display notice if the index $key doesn't exist.?>
运行时错误:
PHP Notice:Undefined variable: errormsg in /home/fe74424b34d1adf15aa38a0746a79bed.php on line 5
输出如下:
Failed in opening the file: error: ''
【PHP中@符号的用途是什么(如何使用?)】程序2:
<
?php//Statement 1
$result = $hello [ '123' ]//Statement 2
$result = @ $hello [ '123' ]
?>
它将仅执行语句1并显示通知消息
PHP Notice:Undefined variable: hello.
注意:@的使用是非常糟糕的编程习惯, 因为它不会使错误消失, 只会将它们隐藏起来, 并且使调试变得更加糟糕, 因为我们看不到代码的实际错误。
参考文献: 错误控制运算符
推荐阅读
- C语言的函数原型的目的是什么(如何理解?)
- 什么是十二要素应用程序(什么是软件即服务(SAAS)应用程序?)
- 是什么使Scala具有可扩展性()
- 自动化(使用Python的Whatsapp!)
- Ping和Traceroute之间有什么区别()
- DBUtils使用详解#yyds干货盘点#
- 设计模式的七大原则 #yyds干货盘点#
- #yyds干货盘点#Maven打jar包供外部调用
- #yyds干货盘点# 如何处理消费过程中的重复消息()