下载此文档

php手册笔记.doc


文档分类:IT计算机 | 页数:约16页 举报非法文档有奖
1/16
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/16 下载此文档
文档列表 文档介绍
,用var_dump()。,用gettype()。,不要用gettype(),而用is_type函数。<?php$a_bool=TRUE;//aboolean$a_str="foo";//astring$a_str2='foo';//astring$an_int=12;//anintegerechogettype($a_bool);//printsout:booleanechogettype($a_str);//printsout:string//Ifthisisaninteger,incrementitbyfourif(is_int($an_int)){$an_int+=4;}//If$boolisastring,printitout//(doesnotprintoutanything)if(is_string($a_bool)){echo"String:$a_bool";}?>,可以对其使用强制转换或者settype()函数。,以下值被认为是FALSE:■the布尔值FALSE自身■the整型值0(零)■(零)■空字符串,以及字符串"0"■不包括任何元素的数组■不包括任何成员变量的对象()■特殊类型NULL(包括尚未设定的变量)■从没有任何标记(tags)的XML文档生成的SimpleXML对象所有其它值都被认为是TRUE(包括任何资源)。(即8或9),则后面其余数字会被忽略。Example#2八进制数的怪事<?phpvar_dump(01090);//八进制010=十进制8?>,将会被解释为float。同样如果执行的运算结果超出了integer范围,也会返回float。(key=>value,...)//键(key)可是是一个整数(integer)或字符串(string)//值(value)可以是任意类型的值<?php$arr=array("foo"=>"bar",12=>true);echo$arr["foo"];//barecho$arr[12];//1?>key可以是integer或者string。如果key是一个integer的标准表示,则被解释为整数(例如"8"将被解释为8,而"08"将被解释为"08")。key中的浮点数被取整为integer。在PHP中索引数组与关联数组是相同的,它们都可以同时包含整型和字符串的下标。,要对它用unset()。<?php$arr=array(5=>1,12=>2);$arr[]=56;//Thisisthesameas$arr[13]=56;//atthispointofthescript$arr["x"]=42;//Thisaddsanewelementto//thearraywithkey"x"unset($arr[5]);//Thisremovestheelementfromthearrayunset($arr);//Thisdeletesthewholearray?>:■被赋值为NULL。■尚未被赋值。■被unset()。NULL类型只有一个值,就是大小写不敏感的关键字NULL(你可以写成NULL,也可以写成null)。,它还可以是一个对象的方法,包括静态类的方法。Example#1回调函数(callback)示例<?php//普通的回调函数functionmy_callback_function(){echo'helloworld!';}//回调方法classMyClass{staticfunctionmyCallbackMethod(){echo'HelloWorld!';}}//Type1:Simplecallbackcall_user_func('my_callback_function');//Type2:lassmethodcallcall_user_func(array('MyClass','myCallbackMethod'));//Type3:Objectmethodcall$obj=newMyClass();call_user_func(array($obj,'myCallbackMethod'));//Type4:lassmethodcall()call_user_func('MyClass::myCallba

php手册笔记 来自淘豆网m.daumloan.com转载请标明出处.

相关文档 更多>>
非法内容举报中心
文档信息
  • 页数16
  • 收藏数0 收藏
  • 顶次数0
  • 上传人文库旗舰店
  • 文件大小87 KB
  • 时间2018-08-25
最近更新