设为首页收藏本站language 语言切换
查看: 1386|回复: 0
收起左侧

PHP语言参考 - 类型

[复制链接]
发表于 2010-2-24 13:38:39 | 显示全部楼层 |阅读模式
<DIV class=titlepage><DIV><DIV><H1><A name=language.types></A>第 11 章 类型</H1></DIV></DIV></DIV><H2>目录</H2><DL><DT><U><FONT color=#000099>介绍</FONT></U><DT><U><FONT color=#000099>布尔型</FONT></U><DT><U><FONT color=#000099>整型</FONT></U><DT><U><FONT color=#000099>浮点型</FONT></U><DT><U><FONT color=#000099>字符串</FONT></U><DT><U><FONT color=#000099>数组</FONT></U><DT><U><FONT color=#000099>对象</FONT></U><DT><U><FONT color=#000099>资源</FONT></U><DT><U><FONT color=#000099>NULL</FONT></U><DT><U><FONT color=#000099>本文档中使用的伪类型</FONT></U><DT><U><FONT color=#000099>类型戏法</FONT></U></DT></DL><DIV class=sect1 lang=zh-cn><DIV class=titlepage><DIV><DIV><H1><A name=language.types.intro></A>介绍</H1></DIV></DIV></DIV><>HP 支持八种原始类型。 </P><>四种标量类型: <DIV class=itemizedlist><UL type=disc><LI><A href="http://www.php.net/manual/zh/language.types.boolean.php"><U><FONT color=#000099>boolean</FONT></U></A>(布尔型) <LI><A href="http://www.php.net/manual/zh/language.types.integer.php"><U><FONT color=#000099>integer</FONT></U></A>(整型) <LI><A href="http://www.php.net/manual/zh/language.types.float.php"><U><FONT color=#000099>float</FONT></U></A>(浮点型,也作&#8220;<A href="http://www.php.net/manual/zh/language.types.float.php"><U><FONT color=#000099>double</FONT></U></A>&#8221;) <LI><A href="http://www.php.net/manual/zh/language.types.string.php"><U><FONT color=#000099>string</FONT></U></A>(字符串) </LI></UL></DIV>两种复合类型: <DIV class=itemizedlist><UL type=disc><LI><A href="http://www.php.net/manual/zh/language.types.array.php"><U><FONT color=#000099>array</FONT></U></A>(数组) <LI><A href="http://www.php.net/manual/zh/language.types.object.php"><U><FONT color=#000099>object</FONT></U></A>(对象) </LI></UL></DIV>最后是两种特殊类型: <DIV class=itemizedlist><UL type=disc><LI><A href="http://www.php.net/manual/zh/language.types.resource.php"><U><FONT color=#000099>resource</FONT></U></A>(资源) <LI><A href="http://www.php.net/manual/zh/language.types.null.php"><U><FONT color=#000099>NULL</FONT></U></A></LI></UL></DIV>为了确保代码的易读性,本手册还介绍了一些<A title=本文档中使用的伪类型 href="http://www.php.net/manual/zh/language.pseudo-types.php"><U><FONT color=#000099>伪类型</FONT></U></A>: <DIV class=itemizedlist><UL type=disc><LI>mixed <LI>number <LI>callback </LI></UL></DIV>可能还会读到一些关于&#8220;双精度(double)&#8221;类型的参考。实际上 double 和 float 是相同的,由于一些历史的原因,这两个名称同时存在。 <></P><>变量的类型通常不是由程序员设定的,确切地说,是由 PHP 根据该变量使用的上下文在运行时决定的。 </P><BLOCKQUOTE><><B>注意: </B>如果想查看某个<A title=第 14 章 表达式 href="http://www.php.net/manual/zh/language.expressions.php"><U><FONT color=#000099>表达式</FONT></U></A>的值和类型,用 <A href="http://www.php.net/manual/zh/function.var-dump.php"><U><FONT color=#000099>var_dump()</FONT></U></A>。 </P><>如果只是想得到一个易读懂的类型的表达方式用于调试,用 <A href="http://www.php.net/manual/zh/function.gettype.php"><U><FONT color=#000099>gettype()</FONT></U></A>。要查看某个类型,<SPAN class=emphasis><EM><STRONG>不要</STRONG></EM></SPAN>用 <A href="http://www.php.net/manual/zh/function.gettype.php"><U><FONT color=#000099>gettype()</FONT></U></A>,而用 <VAR>is_<EM class=replaceable><CODE><STRONG><FONT face=Courier>type</FONT></STRONG></CODE></EM></VAR> 函数。以下是一些范例: <DIV class=informalexample><DIV class=phpcode><CODE><SPAN class=html><FONT face=Courier><SPAN class=default><FONT color=#0000bb>&lt;?php<BR>$bool </FONT></SPAN><SPAN class=keyword><FONT color=#007700>= </FONT></SPAN><SPAN class=default><FONT color=#0000bb>TRUE</FONT></SPAN><SPAN class=keyword><FONT color=#007700>;   </FONT></SPAN></FONT><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>// a boolean<BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>$str  </FONT></SPAN><SPAN class=keyword><FONT color=#007700>= </FONT></SPAN><SPAN class=string><FONT color=#dd0000>"foo"</FONT></SPAN><SPAN class=keyword><FONT color=#007700>;  </FONT></SPAN></FONT><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>// a string<BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>$int  </FONT></SPAN><SPAN class=keyword><FONT color=#007700>= </FONT></SPAN><SPAN class=default><FONT color=#0000bb>12</FONT></SPAN><SPAN class=keyword><FONT color=#007700>;     </FONT></SPAN></FONT><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>// an integer<BR><BR></FONT></SPAN><SPAN class=keyword><FONT color=#007700>echo </FONT></SPAN><SPAN class=default><FONT color=#0000bb>gettype</FONT></SPAN><SPAN class=keyword><FONT color=#007700>(</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$bool</FONT></SPAN><SPAN class=keyword><FONT color=#007700>); </FONT></SPAN></FONT><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>// prints out "boolean"<BR></FONT></SPAN><SPAN class=keyword><FONT color=#007700>echo </FONT></SPAN><SPAN class=default><FONT color=#0000bb>gettype</FONT></SPAN><SPAN class=keyword><FONT color=#007700>(</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$str</FONT></SPAN><SPAN class=keyword><FONT color=#007700>);  </FONT></SPAN></FONT><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>// prints out "string"<BR><BR>// If this is an integer, increment it by four<BR></FONT></SPAN><SPAN class=keyword><FONT color=#007700>if (</FONT></SPAN><SPAN class=default><FONT color=#0000bb>is_int</FONT></SPAN><SPAN class=keyword><FONT color=#007700>(</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$int</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>)) {<BR>    </FONT></SPAN><SPAN class=default><FONT color=#0000bb>$int </FONT></SPAN><SPAN class=keyword><FONT color=#007700>+= </FONT></SPAN><SPAN class=default><FONT color=#0000bb>4</FONT></SPAN></FONT><SPAN class=keyword><FONT face=Courier color=#007700>;<BR>}<BR><BR></FONT></SPAN><FONT face=Courier><SPAN class=comment><FONT color=#ff8000>// If $bool is a string, print it out<BR>// (does not print out anything)<BR></FONT></SPAN><SPAN class=keyword><FONT color=#007700>if (</FONT></SPAN><SPAN class=default><FONT color=#0000bb>is_string</FONT></SPAN><SPAN class=keyword><FONT color=#007700>(</FONT></SPAN><SPAN class=default><FONT color=#0000bb>$bool</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>)) {<BR>    echo </FONT></SPAN><SPAN class=string><FONT color=#dd0000>"String: $bool"</FONT></SPAN></FONT><FONT face=Courier><SPAN class=keyword><FONT color=#007700>;<BR>}<BR></FONT></SPAN><SPAN class=default><FONT color=#0000bb>?&gt;</FONT></SPAN></FONT></SPAN></CODE></DIV></DIV><><FONT face=Courier></FONT></P></BLOCKQUOTE><>如果要将一个变量强制转换为某类型,可以对其使用<A title=类型强制转换 href="http://www.php.net/manual/zh/language.types.type-juggling.php#language.types.typecasting"><U><FONT color=#000099>强制转换</FONT></U></A>或者 <A href="http://www.php.net/manual/zh/function.settype.php"><U><FONT color=#000099>settype()</FONT></U></A> 函数。 </P><>注意变量根据其当时的类型在特定场合下会表现出不同的值。更多信息见<A title=类型戏法 href="http://www.php.net/manual/zh/language.types.type-juggling.php"><U><FONT color=#000099>类型戏法</FONT></U></A>。此外,你还可以参考 <A title="附录 Q. PHP 类型比较表" href="http://www.php.net/manual/zh/types.comparisons.php"><U><FONT color=#000099>HP 类型比较表</FONT></U></A>看不同类型相互比较的例子。</P></DIV>
您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-5 20:51 , Processed in 0.073925 second(s), 23 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表