Remove deprecated rdirname() in favor of native dirname()

This commit is contained in:
nupplaPhil
2020-01-05 00:10:34 +01:00
parent 5d20cd7e16
commit 07b4ceecd2
2 changed files with 1 additions and 20 deletions

View File

@@ -683,22 +683,3 @@ function validate_include(&$file)
// Simply return flag
return $valid;
}
/**
* PHP 5 compatible dirname() with count parameter
*
* @see http://php.net/manual/en/function.dirname.php#113193
*
* @deprecated with PHP 7
* @param string $path
* @param int $levels
* @return string
*/
function rdirname($path, $levels = 1)
{
if ($levels > 1) {
return dirname(rdirname($path, --$levels));
} else {
return dirname($path);
}
}