标签: php casting
我想做这样的事情:
$type = "int"; $casted = ($type)$value;
这不起作用。但是有没有其他方法可以转换为动态确定的类型?
由于
答案 0 :(得分:66)
使用settype()功能。
settype()
http://php.net/manual/en/function.settype.php
示例:
$type = 'int'; $var = '20'; settype($var, $type); var_dump($var);