gpt4 book ai didi

PHP:转换为动态确定的类型

转载 作者:IT王子 更新时间:2023-10-29 00:00:59 28 4
gpt4 key购买 nike

我想做这样的事情:

$type = "int";
$casted = ($type)$value;

这不起作用。但是还有其他方法可以转换为动态确定的类型吗?

谢谢

最佳答案

使用settype()函数。

http://php.net/manual/en/function.settype.php

例子:

$type = 'int';
$var = '20';
settype($var, $type);
var_dump($var);

关于PHP:转换为动态确定的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4687967/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com