PHP 中 @ 符号有什么用途?
PHP 支持错误控制操作符,即 @ 符号。当在表达式的前面加上 @ 时,该表达式可能产生的任何错误消息都会被忽略。
若要在 PHP 中使用 @ 符号,代码如下−
示例
<?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
示例
现在我们来看另一个示例−
<?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
广告