Home  >  Article  >  php教程  >  PHP教程:isset() , unnset(), empty()

PHP教程:isset() , unnset(), empty()

WBOY
WBOYOriginal
2016-06-21 08:56:371119browse

isset() , unnset(), empty() 是一个语言结构而非函数,因此它无法被变量函数调用。

isset()、empty() 只检测变量,检测任何非变量的东西都将导致解析错误。后边的语句是错误而且将不会起作用: empty(addslashes($name))。 若想检测常量是否已设置,可使用 defined() 函数。同时要注意的是一个 NULL 字节(“\0″)并不等同于 PHP 的 NULL 常数。所以 isset(NULL)会发生语法错误。

像echo(),print(),include(),require() 都是语言结构而非函数。



Statement:
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