RE: Getting domain out of a URL

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



[snip]
Something along the lines of:

<?php

$boom[1] = "ranchy.stuff.com and other junk";

$input = $boom[1];
$out = array_slice($input, 0, 1);

?>

Part of my problem, I'm beginning to realize, is that the array
'$boom[1]' 
contains only one element. Is there a similar string function I could
use 
that would accomplish what I need?
[/snip]

Why not use explode with the period (.) as the delimiter?

$url =  ranchy.stuff.com and other junk";
$boom = explode(".", $url);
print_r($boom);

$boom is now an array containing 'ranchy', 'stuff', 'com and other junk'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux