PHP 中 @ 符号有什么用途?


PHP 支持错误控制操作符,即 @ 符号。当在表达式的前面加上 @ 时,该表达式可能产生的任何错误消息都会被忽略。

若要在 PHP 中使用 @ 符号,代码如下−

示例

 Live Demo

<?php
   $file = @file ('non_existent_file') or
   die ("Failed in opening the file: Error Message = '$err'");
   $value = @$cache[$key];
?>

输出

这将产生以下输出−

Failed in opening the file: Error Message = ''PHP Notice: Undefined
variable: err in /home/cg/root/6985034/main.php on line 4

示例

现在我们来看另一个示例−

 Live Demo

<?php
   $val = $test['5']
   $val = @$test['5']
?>

输出

这将产生以下输出−

PHP Parse error: syntax error, unexpected '$val' (T_VARIABLE) in /home/cg/root/6985034/main.php on line 5

更新于: 2019 年 12 月 26 日

1000+ 阅读

开启你的 职业生涯

完成课程获得认证

开始学习
广告