PHP中@符号的用途是什么?
PHP支持错误控制运算符,即at符号(@)。当@放在表达式之前时,该表达式可能生成的任何错误消息都将被忽略。
要在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: Undefinedvariable: 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
以上是 PHP中@符号的用途是什么? 的全部内容, 来源链接: utcz.com/z/352550.html