字符串我有一個字符串:需要幫助切斷與PHP
$str = "http://www.abc.com/xxx/xxx/v54/c505/1.html";
如何切後1.html
了嗎?
我想要的結果是http://www.abc.com/xxx/xxx/v54/c505/
。
字符串我有一個字符串:需要幫助切斷與PHP
$str = "http://www.abc.com/xxx/xxx/v54/c505/1.html";
如何切後1.html
了嗎?
我想要的結果是http://www.abc.com/xxx/xxx/v54/c505/
。
$newStr = dirname($str) . '/';
您可以使用目錄名() -
$str = "http://www.abc.com/xxx/xxx/v54/c505/1.html";
$dir = dirname($str);
+1沒有意識到這會起到很好用'HTTP://':) – alex
@alex我回答;-) – Phil
我以前的兩倍測試在分配+1之前檢查你:D – alex