string(2) "10" } 我需要转换成这个: $TaxIds=array(2) { [-6ren">
gpt4 book ai didi

php - 在php中将字符串数组转换为整数数组

转载 作者:行者123 更新时间:2023-12-03 18:15:53 28 4
gpt4 key购买 nike

我有一个数组:

$TaxIds=array(2) { [0]=> string(1) "5" [1]=> string(2) "10" } 

我需要转换成这个:
$TaxIds=array(2) { [0]=> int(5) [1]=> int(10) } 

简单的方法???

最佳答案

@george 答案的简化版本是:

$TaxIds = array_map('intval', $TaxIds);

更多信息请访问 array_map

虽然这个问题很久以前就被问过了,但它可能对某人有用

关于php - 在php中将字符串数组转换为整数数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32435481/

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