-----Original Message-----
From: Chris Knipe [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 17, 2005 12:16 PM
To: php-general@lists.php.net
Subject: [PHP] something stupid... split().

> 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 ;)

"." means any char in regular expressions.

list($Duration, $none) = split('\.', ConvertTime($AcctSessionTime/90),
2);

will do the trick for ya.

--
Med venlig hilsen / best regards
ComX Networks A/S
Kim Madsen
Systemudvikler/Systemdeveloper
Naverland 31

DK-2600 Glostrup
www.comx.dk
Telefon: +45 70 25 74 74
Telefax: +45 70 25 73 74
E-mail: [EMAIL PROTECTED]

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

Reply via email to