isset什么东西?怎么用的?
phpcn_u274
phpcn_u274 2016-12-24 14:40:33
0
2
1047

if( isset($arr0) ) {print_r($arr0);} 什么意思 这句话?一直不懂isset怎么用?

phpcn_u274
phpcn_u274

reply all(2)
数据分析师

isset what? How to use it? -PHP Chinese website Q&A-What is isset? How to use it? -PHP Chinese website Q&A

Please watch and learn.

阿神

$arr0为变量名,是用来储存变量值的。也就是给它赋值了,则如:$arr0=1,表示$arr0的值为1,就是isset了。有设置了值就返回true,则继续执行if()里的内容,输出$arr0的值,否则,不执行if()里面的内容,跳到下一条代码。

通俗点,按英文翻译,is  set为:设置了。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template