What is the php @ sign for

Possible Duplicate:
What is the use of @ symbol in php?

Hello all, an easy one for you,

what does the @ sign mean when placed before a php function call?

Thanks!


这意味着如果发生错误,则不会打印该函数中的任何错误。


抑制错误报告


PHP's error suppress operator used to suppress error messages.

SideNote: Avoid it as much as you can, also it slows down performance heavily :)

链接地址: http://www.djcxy.com/p/57702.html

上一篇: '$'字符旁边的'@'字符

下一篇: 什么是php @标志