$ grep -r "#uri" ./posts
Tag

#uri

// 1 match

Convert a string into an URL safe address

/** * Convert a string into a url safe address. * * @param string $unformatted * @return string */ public function formatURL($unformatted) { $url = strtolower(trim($unformatted)); //replace accent...

IT-Digest AI Assistant