我不确定这是否会起作用,或者如何使它起作用。
任何帮助都会非常感谢。
我需要把这个条件语句字符串变成一个变量吗?
我怎样才能做到这一点?
if ($address1) {
echo $address1 . ', ';
}
if ($address2) {
echo $address2 . ', ';
}
if ($address3) {
echo $address3 . ', ';
}
if ($address4) {
echo $address4 . ', ';
}
if ($townCity) {
echo $townCity . ', ';
}
if ($county) {
echo $county . ', ';
}
if ($postCode) {
echo $postCode;
}
所以基本上我需要在一个变量中使用它,而我在 if 语句中使用它的原因是因为这些变量中的一些可能不存在。
在每个变量之后,它都有一个逗号和空格。
如果我这样做...
$singleVar = $address1 . ', ' .
$address2 . ', ' .
$address3 . ', ' .
$address4 . ', ' .
$townCity . ', ' .
$county . ', ' .
$postCode;
然后对于不存在的变量,将有额外的逗号和空格 - 不酷。
任何人都可以请建议。
谢谢