使用以下代码输出数组
$values = array();
foreach ($album as $a){
$values[] = $a['value'];
}
$string = implode(' or ', $values);
}
返回
1 or 2 or 3
现在我怎样才能把“”赋予每个值,因此它看起来像
"1" or "2" or "3"
感谢您的帮助
答案 0 :(得分:7)
if (!empty($values)) {
$string = '"' . implode('" or "', $values) . '"';
} else {
$string = 'What do you think you\'re doing!?';
}
答案 1 :(得分:3)
我认为这更容易:
$values = array();
foreach ($album as $a){
$values[] = '"'.$a['value'].'"'; //concat quotes on each side of the value
}
$string = implode(' or ', $values);
}
答案 2 :(得分:1)
这是一个干净的解决方案,可以正常使用空数组:
$string = implode(' or ', array_map(function($value) {
return '"' . $value . '"';
}, $values));
演示(从php -a
shell复制):
php > $values = array('foo', 'bar', 'moo');
php > $string = implode(' or ', array_map(function($value) {
php ( return '"' . $value . '"';
php ( }, $values));
php > echo $string;
"foo" or "bar" or "moo"
php >