Re: [PHP-DB] String datetime to DateTime

2002-06-20 Thread Glenn Holden
their %s (yes that was a typo) looks for a space > as a delimiter and not the specified next one. > > Easiest workarounds off the cuff... > 1) sscanf() to get the bulk of the data out, then regex out the %s string. > 2) eregi_replace() Jun with the numeric > 3) Dump it as numeric

Re: [PHP-DB] String datetime to DateTime

2002-06-20 Thread szii
instead of a string month name 4) eregi_replace() the /'s with spaces then sscanf() it. 'Luck -Mike - Original Message - From: "Glenn Holden" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 20, 2002 8:48 AM Subject: Re: [PHP-DB] String dat