wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_exif_date2ts › WordPress Function

Seit2.5.0
Veraltetn/v
wp_exif_date2ts ( $str )
Parameter:
  • (string) $str A date string expected to be in Exif format (Y:m:d H:i:s).
    Erforderlich: Ja
Gibt zurück:
  • (int|false) The unix timestamp, or false on failure.
Definiert in:
Codex:

Converts the exif date format to a unix timestamp.



Quellcode

function wp_exif_date2ts( $str ) {
	list( $date, $time ) = explode( ' ', trim( $str ) );
	list( $y, $m, $d )   = explode( ':', $date );

	return strtotime( "{$y}-{$m}-{$d} {$time}" );
}