$name=@$_POST['name']是什么意思?

WBOY
Release: 2016-06-23 14:12:51
Original
2105 people have browsed it

$name= @$_POST['name']是什么意思?

我想问下里面的@是什么意思?


回复讨论(解决方案)

屏蔽错误。。

能具体点吗?说全一点,没接触过这个写法

就是如果这句有错误 也不会报错  @  屏蔽错误

@ 屏蔽错误信息

如果只是 $name=$_POST['name'] 可能会有一个  Notice:  Undefined index: name 警告信息
加个 @ 就可以不让那个警告信息打印出来

但这并不是正确的做法!
如果程序是通过 post 表单运行的,那么 $_POST['name'] 就不会不存在
如果程序是被直接运行的,那么 $_POST['name'] 就一定不存在,对于一组根本不存在的数据做后续处理是毫无意义的,甚至可能导致不良后果



屏蔽警告信息

屏蔽警告信息,做预处理

$_POST['name']  这个应该是注册或者登录时处理的吧,
如果连这个都没有,直接exit了。

就是屏蔽掉错误提示,如果这句代码产生了运行时错误,是不会提示的。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template