public static reduceSlashes (mixed $str)
Reduces multiple slashes in a string to single slashes
echo Phalcon\Text::reduceSlashes("foo//bar/baz"); // foo/bar/baz echo Phalcon\Text::reduceSlashes("http://foo.bar///baz/buz"); // http://foo.bar/baz/buz
Please login to continue.