wp_exif_date2ts

函式
wp_exif_date2ts ( $str )
引數
  • (string) $str A date string expected to be in Exif format (Y:m:d H:i:s).
    Required:
返回值
  • (int|false) The unix timestamp, or false on failure.
定義位置
相關方法
wp_exif_frac2decwp_datewp_ext2typewp_get_update_datawp_ajax_date_format
引入
2.5.0
棄用
-

wp_exif_date2ts: 這個函式用於將WordPress中的EXIF日期轉換成Unix時間戳。EXIF是一種後設資料格式,通常用於數碼攝影: 這個函式接收一個EXIF日期字串作為輸入,並返回一個Unix時間戳。

將exif的日期格式轉換為unix的時間戳。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function wp_exif_date2ts( $str ) {
list( $date, $time ) = explode( ' ', trim( $str ) );
list( $y, $m, $d ) = explode( ':', $date );
return strtotime( "{$y}-{$m}-{$d} {$time}" );
}
function wp_exif_date2ts( $str ) { list( $date, $time ) = explode( ' ', trim( $str ) ); list( $y, $m, $d ) = explode( ':', $date ); return strtotime( "{$y}-{$m}-{$d} {$time}" ); }
function wp_exif_date2ts( $str ) {
	list( $date, $time ) = explode( ' ', trim( $str ) );
	list( $y, $m, $d )   = explode( ':', $date );

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

常見問題

FAQs
檢視更多 >