加拿大华人论坛 美国华人新闻Introduction to PHP "@" Operator
在加拿大
PHP: The @ OperatorMay 7th, 2006I’ve seen some confusion online lately about the purpose of the “@” operator in PHP. Let’s figure out exactly what the “at operator” does.PHP holds your hand with error reporting during development by printing error messages to the user’s browser automatically when something goes wrong. This often looks something like this:Warning: mysql_connect() [function.mysql-connect]: Unknown MySQL server host ‘woopsy.example.com’ (1) in errors.php on line 3The code that created this warning looks like this:mysql_connect( "woopsy.example.com" );Pretty simple — I tried to connect to a non-existent MySQL server using a mistaken hostname. This is handy, but I usually don’t like these kinds of errors to show up when a user browses my site. We can make the error go away by prepending a “@” on the front of the call to mysql_connect(), like this:@mysql_connect( "woopsy.example.com" );This gets rid of the warning message we saw earlier, but now we have no way of knowing whether mysql_connect() was actually able to connect or not. To fix that, we need to check the return value. According to the mysql_connect() documentation, the function returns a MySQL link identifier on success and FALSE on failure. So, let’s do this:$db = @mysql_connect( "woopsy.example.com" );if( $db === false ){ echo "Could not connect to server."; exit();}The lesson to take away from this is that the “@” operator suppresses error messages, not return values. You can read more about the operator at the PHP Error Control Operator documentation page.For the motivated reader, the “@” operatore has many more applications. You can use it to suppress errors in include files and even bad array indexes.The best way to deal with errors, however, is to use your own error handling function by calling set_error_handler() . This way, you can get notified whenever an error occurs, and you can even be told the error number, message, file, and line number. This way you can log it or even present a link for users to report the bug. It’s very handy, and a great way to find and fix bugs without requiring too much user inconvenience.The phpLDAPadmin project has an excellent implementation of an error handler, which can be viewed here. Search that page for pla_error_handler. It reports lots of versions (ie, the web server and PHP version), the exact error message, and even some PHP settings. It proved very useful for users to report bugs, since they could just copy/paste the output on the SourceForge bug tracker. ‘This leads me to my final comment. I’ve already mentioned that the best way to handle errors in PHP is to implement your own error handler and call set_error_handler(). In this function, you should log all errors, and then only display a message for those that happen without the “@” operator present. In other words, you should do something like this:function my_error_handler( $errno, $errstr, $file, $lineno ){ my_log_msg( "Error $errno: $errstr in file $file on line $lineno" ); if( 0 == ini_get( "error_reporting" ) || 0 == error_reporting() ) return; // Display an error message of some kind}Any now my final comment: I use error_reporting() in all my PHP applications to set the strictest error reporting possible like so:error_reporting( E_STRICT );You may not want such strict error reporting in your application, so choose from the available error levels. This will give you all kinds of error messages, but it will help you bullet-proof your code in a jiffy.Enjoy your error reporting!Souce : http://thesmithfam.org/blog/
·加拿大新闻 这航空公司加拿大飞香港服务好座位阔价钱平为何转机客却步?
·加拿大新闻 集体下跌,BBA在华销量失守,德系豪车为何风光不再?
·加拿大新闻 卑诗延长重大疾病或受伤员工无薪假 一年内最多可申请27周
·加拿大新闻 不用中考?十二年贯通式学校能否减轻升学焦虑?
·加拿大新闻 “再也不会开车去加拿大了”美家庭来加国旅游车辆第2次被破坏
·中文新闻 在主持 2025 年英国骄傲奖颁奖典礼之前,64 岁的卡罗尔·沃德曼
·中文新闻 歌手一头金色短卷发,面目全非,她透露碧昂丝送给她的礼物,