Reduces multiple slashes in a string to single slashes.
$str = Text::reduce_slashes('foo//bar/baz'); // "foo/bar/baz"
string Core_Text::reduce_slashes( string $str )
参数列表
参数 类型 描述 默认值 $str
string
String to reduce slashes of
string
public static function reduce_slashes($str)
{
return preg_replace('#(?<!:)//+#', '/', $str);
}