首页 > 其他 > 详细

settype — 设置变量的类型

时间:2015-10-28 15:47:22      阅读:270      评论:0      收藏:0      [点我收藏+]

说明

bool settype ( mixed &$var , string $type )

将变量 var 的类型设置成 type

范例


Example #1 settype() 示例

<?php
$foo 
"5bar"// string
$bar true;   // boolean

settype($foo"integer"); // $foo 现在是 5   (integer)
settype($bar"string");  // $bar 现在是 "1" (string)
?>


settype — 设置变量的类型

原文:http://duai2010.blog.51cto.com/1591629/1707193

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!