foreach($arr as $index => $value){
        $arr[$index] = (int)$value;
}

  采用循环遍历的方式,将数组中的每一个数字字符串元素设置为整数数字。

相关文章: