Home
last modified time | relevance | path

Searched refs:ISOtime (Results 1 – 1 of 1) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.misc.iso.php361 * @param string $ISOtime
367 $UNIXyear = (int) substr($ISOtime, 0, 4);
368 $UNIXmonth = (int) substr($ISOtime, 4, 2);
381 * @param string $ISOtime
385 public function ISOtime2UNIXtime($ISOtime) { argument
395 $UNIXyear = ord($ISOtime[0]) + 1900;
396 $UNIXmonth = ord($ISOtime[1]);
397 $UNIXday = ord($ISOtime[2]);
398 $UNIXhour = ord($ISOtime[3]);
399 $UNIXminute = ord($ISOtime[4]);
[all …]