我正在使用模型視圖控制器,並且在我的URL中,我需要在URL的末尾有斜槓。如何檢查它是否有斜線?PHP:檢查URL是否包含末尾的斜線
http://localhost/tabulation/event/event_name/<--I need to check this slash
$url = isset($_GET['url']) ? $_GET['url'] : null;
$url = rtrim($url. '/');
$url = explode('/', $url);
//if($url[2] has no backslashes then execute the condition
你的'rtrim'不正確。不要連接結尾字符是第二個參數。然後你可以追加一個'/'因爲你知道末尾的斜線被刪除了。 – chris85