In this tutorial learn how to Converts double slashes in a string to a single slash, except those found in http:// ,
http://www.example.com//index.php
becomes:
http://www.example.com/index.php
Tutorial
http://www.example.com//index.php
becomes:
http://www.example.com/index.php
Tutorial
<?php
/**
* Reduce Double Slashes
*
* Converts double slashes in a string to a single slash,
* except those found in http://
*
* http://www.example.com//index.php
*
* becomes:
*
* http://www.example.com/index.php
*
* @param string
* @return string
*/
function reduce_double_slashes($str)
{
return preg_replace('#(^|[^:])//+#', '\\1/', $str);
}
echo reduce_double_slashes("http://www.example.com//index.php");
?>
About Tutorial Outputhttp://www.example.com/index.php
No comments:
Post a Comment