示例#1
0
 /**
  * String to lower URL
  *
  * Transforms a string to a lowercase proper URL.
  *
  * @param string	$str			String to transform
  * @param boolean	$with_slashes	Keep slashes in URL
  * @return string
  */
 public static function strToLowerURL($str, $with_slashes = true)
 {
     return strtolower(text::str2URL($str, $with_slashes));
 }