一個URL參數字符串的一部分,爲什麼這不能刪除example/
:如何刪除PHP
$url = "http://webserver/exmaple/subdomaine/";
$domaine="example"
$domaine= $domaine."/";
echo str_replace($domaine,"",$url);
有沒有更好的方式來做到這一點?
謝謝!
一個URL參數字符串的一部分,爲什麼這不能刪除example/
:如何刪除PHP
$url = "http://webserver/exmaple/subdomaine/";
$domaine="example"
$domaine= $domaine."/";
echo str_replace($domaine,"",$url);
有沒有更好的方式來做到這一點?
謝謝!
$domaine = "example"; // Missing semicolon ...
檢查拼寫:
exmaple
== example
〔實施例將是一個樹,這是在過去楓,但現在是另一種類型的樹如橡木或紅豆杉。
在這裏做了一個錯誤
$domaine="example"
通過
$domaine="example";
對不起取代它,但我想在結束了:'HTTP:// Web服務器/ subdomaine /' – user3350731
什麼關於錯字? –
謝謝!我修好了:) 謝謝大家 – user3350731