我對PHP很陌生,我試圖連接三個字符串。而這個作品,如果我這樣做:返回新創建的字符串
echo Test::getBaseUrl() , '/' , $append_url;
但這種情況發生的方法裏面,我想這回被叫,但是當我添加return
,而不是echo
這樣的:
return Test::getBaseUrl() , '/' , $append_url;
我得到這樣的錯誤:
PHP Parse error: syntax error, unexpected ',' in /home/ubuntu/Test.php on line 31
我在哪裏犯錯?
'echo「a」,「b」;'does ** not **連接兩個字符串,它只是首先輸出第一個字符串,然後輸出第二個字符串。 –