【发布时间】:2015-01-15 08:31:19
【问题描述】:
我有以下代码行:
$value['street1'] = "MCN";
$value['street2'] = "Bhavani peth spur";
$value['city'] = "Los Angeles";
$value['state_code'] = "CA";
$value['zip_code'] = 90009;
$temp_rebate_data['user_address'] = $value['street1']."".($value['street2'] ? "\n".$value['street2'] : '')."\n".$value['city']."".$value['state_code']."-".$value['zip_code'];
echo $temp_rebate_data['user_address'];
die;
以上代码的输出如下:
MCN Bhavani peth spur Los AngelesCA-90009
预期的输出应该如下:
MCN,
Bhavani peth spur,
Los Angeles, CA - 90009
有人可以帮我解决我做错的地方吗?
【问题讨论】:
-
使用
<br />也代替""使用"," -
或使用
echo nl2br($data);
标签: php string newline line-breaks string-concatenation