supposed a variable named $url,whcih value maybe $url=http://www.example.com or $url=http://example.com or $url=www.example.com
now, i want to echo the $url in www.example.com style, how to does this? thank you.
|
supposed a variable named $url,whcih value maybe now, i want to echo the $url in |
|||
|
|
PHP parse_url: http://php.net/manual/en/function.parse-url.php |
|||
|
use
|
|||
|
|
|
You can use strpos and str_replace to do the job. Search the http in the url through strpos if found replace with blank.
|
||||
|
|