Home  >  Q&A  >  body text

isset什么东西?怎么用的

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

phpcn_u224phpcn_u2242883 days ago2030

reply all(3)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:15:45

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

    Take a look around and learn.

    reply
    0
  • 靠近你

    靠近你2016-12-20 16:38:28

    isset()在php中用来检测变量是否设置

    if( isset($arr0) ) {print_r($arr0);} 这段代码的意思是,如果设置$arr0变量,则打印变量$arr0,否则这段代码不执行,跳过这段代码

    reply
    0
  • 阿神

    阿神2016-12-20 16:33:24

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

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

    reply
    0
  • Cancelreply