下面的代碼是產生這樣的結果:http://localhost/my_website/ contact-us
結合變量和HTML PHP變量內
$base_url="http://localhost/my_website/";
echo $link= "$base_url contact-us ";
但我想獲得這樣的結果:http://localhost/my_website/contact-us
我也曾嘗試下面的代碼
$base_url="http://localhost/my_website/";
echo $link= "$base_url.contact-us ";
但結果是這樣http://localhost/my_website/.contact-us
你能告訴我如何解決這個問題嗎?
編輯
我很抱歉,我我以前不明確提到,我這裏面臨的具體問題。我認爲上面的例子會幫助我的情況。其實我試圖創建一個鏈接,我會在用戶的電子郵件地址發送。
我的代碼
$base_url="http://localhost/my_website/";
$random_hash="1";
echo $link="
<a href='$base_url account/confirm_registration/$random_hash' target='_blank'>$base_url account/confirm_registration/$random_hash</a>";
但它產生這樣
http://localhost/my_website/ account/confirm_registration/1
你不知道如何使用連接字符'.':HTTP:// php.net/manual/en/language.operators.string.php – Stefan 2013-02-26 07:58:55
非常感謝:)我訪問了鏈接並找到了解決方案。我正在使用{}這個{$ base_url}帳戶/ ...,並且它工作的很完美。謝謝:) – 2013-02-26 08:09:16