选择语言 :

 Core_Text::reduce_slashes

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
File: ./core/classes/text.class.php
public static function reduce_slashes($str)
{
    return preg_replace('#(?<!:)//+#', '/', $str);
}