Answers for "php string as id not working"

PHP
0

php make text id attribute safe

function seoUrl($string) {
		//Lower case everything
		$string = strtolower($string);
		//Make alphanumeric (removes all other characters)
		$string = preg_replace("/[^a-z0-9_s-]/", "", $string);
		//Clean up multiple dashes or whitespaces
		$string = preg_replace("/[s-]+/", " ", $string);
		//Convert whitespaces and underscore to dash
		$string = preg_replace("/[s_]/", "-", $string);
		return $string;
	}
Posted by: Guest on June-03-2020

Code answers related to "php string as id not working"

Browse Popular Code Answers by Language