我有一个字符串和一个值。我正在分解字符串,它将一些结果返回到列表中。我想将列表中的每个项添加到一个数组中,并为每个字符串分配相同的值。以下是我目前所拥有的:
$count = 3;
$amount = 2500;
$value = ceil ($amount / $count);
$string = "String1, String2, String3, ";
$strings = explode(", ", $string);
我想运行一个foreach,将$string和$value一起放入一个数组中。有指针吗?
您可以简单地使用:
$combo = array_fill_keys( $strings , $value );
// var_dump( $combo ); // to check you got it right.
这将获取$strings
数组中的值,并将它们用作新$combo
数组的键,为每个键设置相同的值。