Heim  >  Artikel  >  Backend-Entwicklung  >  php boolean(布尔)类型的用法举例

php boolean(布尔)类型的用法举例

WBOY
WBOYOriginal
2016-07-25 08:57:431472Durchsuche
  1. /**
  2. * 检测php中的boolean布尔类型
  3. * edit: bbs.it-home.org
  4. */
  5. var_dump((bool) ""); // bool(false)
  6. var_dump((bool) 1); // bool(true)
  7. var_dump((bool) -2); // bool(true)
  8. var_dump((bool) "foo"); // bool(true)
  9. var_dump((bool) 2.3e5); // bool(true)
  10. var_dump((bool) array(12)); // bool(true)
  11. var_dump((bool) array()); // bool(false)
  12. var_dump((bool) "false"); // bool(true)  
复制代码

说明: 布尔转字符串时,true=>1,false=>"";



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn