Searched refs:ISOtime (Results 1 – 1 of 1) sorted by relevance
| /plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
| D | module.misc.iso.php | 361 * @param string $ISOtime 365 public function ISOtimeText2UNIXtime($ISOtime) { argument 367 $UNIXyear = (int) substr($ISOtime, 0, 4); 368 $UNIXmonth = (int) substr($ISOtime, 4, 2); 369 $UNIXday = (int) substr($ISOtime, 6, 2); 370 $UNIXhour = (int) substr($ISOtime, 8, 2); 371 $UNIXminute = (int) substr($ISOtime, 10, 2); 372 $UNIXsecond = (int) substr($ISOtime, 12, 2); 381 * @param string $ISOtime 385 public function ISOtime2UNIXtime($ISOtime) { argument [all …]
|