dasherize() public static method

To dasherize HelloWorld = Hello-World
public static dasherize ( type $str ) : type
$str type
return type
Example #1
0
 /**
  * Dasherize part for a url
  *
  * @param type $str
  * @return string
  */
 private function dasherizeUrl($str)
 {
     return strtolower(Helpers::dasherize($str));
 }