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]; }