/** * Retourne le chemin du script demandé. * <code> * //Si appelé avec http://mysite.com/subdir/index.php/mypath/myaction?myparams=myvalues * echo CopixUrl::getRequestedScriptPath (); * //affiche "/subdir/" * </code> * @return string */ public static function getRequestedScriptPath() { if (self::$_scriptPath === false) { self::$_scriptPath = substr(self::getRequestedScript(), 0, strrpos(self::getRequestedScript(), '/')) . '/'; } return self::$_scriptPath; }