下面的代碼沒有爲我連接字符串,怎麼回事?PHP字符串連接
$test = $this->address . $this->url;
echo $test; // prints the content of $this->address only
但此代碼的工作:
$begin = $this->address;
$end = $this->url;
$test = $begin.$end;
echo $test; // prints the concatenation
我缺少什麼?
嘗試'回聲$這個 - > url'的情況。這個變量在第一種情況下可能是空的! – jbrtrnd
@ JBRTRND-DEV,不,它不是空的,我已經測試過 – Alon
檢查這些以查看變量是否真的有任何值:'strlen()','empty()','isset()' – Vishal