Extract url from this string? It should be flexible for all
strings, not for this string only.
"yahoo.comyahoo.co.inhotmail.org"
Answer Posted / amitverma
##
##This will work for PHP 5.3 -
$url1="yahoo.com";
$url2="yahoo.co.in";
$url3="hotmail.org";
$domain1 = strstr($url1, '.', true);
$domain2 = strstr($url2, '.', true);
$domain3 = strstr($url3, '.', true);
echo $domain1, $domain2, $domain3;
##
## For Older PHP (<5.2.8), this code will follow -
$url1="yahoo.com";
$url2="yahoo.co.in";
$url3="hotmail.org";
$domain1 = substr($url1, 0, strpos($url1, '.') );
$domain2 = substr($url2, 0, strpos($url2, '.') );
$domain3 = substr($url3, 0, strpos($url3, '.') );
echo $domain1, $domain2, $domain3;
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
Tell me what is the difference between ereg_replace() and eregi_replace()?
How to test if a variable is an array?
Explain the advantages of using PHP?
Tell me what is the use of isset() in php?
What is php and why it is used?
What is php string function?
Which is better wamp or xampp?
What is the use of mysql_fetch_array in php?
What is difference between static and constant in php?
What are the encryption functions in php?
What is the role of php?
Write a select query that will be displayed the duplicated site name and how many times it is duplicated?
How do you display the output directly to the browser?
How many types of array are there in php?
What is a query give example?