search

Home  >  Q&A  >  body text

isset什么东西?怎么用的?

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

phpcn_u274phpcn_u2742901 days ago1052

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:43:01

    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.

    reply
    0
  • 阿神

    阿神2016-12-24 14:41:12

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

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

    reply
    0
  • Cancelreply