Extract url from this string? It should be flexible for all
strings, not for this string only.
"yahoo.comyahoo.co.inhotmail.org"
Answer / 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 |
How do you clear environment variables?
I created a cookie with the value like '1A2A',now i want to update this value regularly (about 20 times in a minute) with the value '1A2A3A' , 3A is the new value,new value will vary on the request it may be 3A or 4A or 100A ,some times the cookie is updating with new value but not every time.Can any body suggest the solution
What is php limit?
What is difference between core php and framework?
Explain me what is the use of header() function in php?
What is the mysql injection?
Explain a resource?
What is PHP's configuration file called?
What is form validation in php?
How you can update memcached when you make changes to php?
What is properties of class?
Tell me what is the default session time in php?