I need cut from page url www. using php trim() function. But this function cut and first letter, why?
$domain = parse_url('http://wordpresas.com/page/1');
$domain['host'] = trim($domain['host'], 'www.');
pr($domain['host']); //ordpresas.com
|
As other have stated the second parameter of However you can use
|
|||||||||||||
|
|
The most effective way to do this is probably:
It should have complexity |
|||
|
|
trim()works fine. Your code works poorly – Leigh Feb 3 '12 at 11:11trim()is indeed a character list, so any character in that list will get cut off. Wasn't aware of that. (Still, this is by design. You'll need a different function to do what you need.) – Pekka 웃 Feb 3 '12 at 11:12