Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下数组值
0 => "2"
现在,由于我使用 API,因此没有 qoutes 非常重要(因为调用会误操作它)
所以我尝试了以下方法:
stripslashes($string);
然而,这并没有帮助任何想法?
$yourArray = array_map('intval', $yourArray);
如果要转换所有值或 intval($string)字符串
intval($string)
您可以遍历数组并将它们转换为整数
$count = count($arr); for($i=0;$i<$count;$i++) { $arr[$i] = (int)$arr[$i]; }