On Thu, March 17, 2005 3:16 am, Chris Knipe said: > Lo all, > > echo ConvertTime($AcctSessionTime/90); # Returns: 03:17:46.7666666667 > > I am trying to drop the .whatever.. Thus, > > list($Duration, $none) = split('.', ConvertTime($AcctSessionTime/90), 2); > > > However, $Duration is empty, and $none has the whole string from > ConvertTime.... As I said, something silly ;)
split does regular expressions. Where '.' means "any character" So you *could* do '\\.' instead of '.' But http://php.net/explode is the better answer here. -- Like Music? http://l-i-e.com/artists.htm -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php