How can I convert this string 05/Feb/2010:14:00:01 to unixtime ?
|
feedback
|
|
For PHP 5.3 this should work. You may need to fiddle with passing $dateInfo['is_dst'], wasn't working for me anyhow.
Versions prior, this should work.
You may not like regular expressions. You could annotate it, of course, but not everyone likes that either. So, this is an alternative.
Or substr, or explode, whatever you wish to parse that string. | |||||
|
feedback
|
|
You should look into the strtotime() function. | |||||
feedback
|
|
Use the Example:
| |||||||
feedback
|
|
Simple exploding should do the trick:
| |||
|
feedback
|