mysql2date 转换从数据库里面获取的日期字符串为可读日期

Posted in:
Update time:2020-10-29

函数描述

转换指定的 MySQL 日期字符串为不同的格式。

Usage

<?php $date = mysql2date( $format, $date, $translate ); ?>

parameters

parametersdata typeRequired or notdescriptivedefault value
$formatstring (computer science)be需要的输出格式,可以是PHP日期格式或Unix时间戳。如 ‘U’ 为 Unix 时间戳,如果 $date 为GMT格式,此处设置为 ‘G’。not have
$datestring (computer science)be需要转换的字符串,不能是一个原始的时间戳,必须先转换为 ‘Y-m-d H:i:s’ 这种格式,mysql2date() 只能识别这种格式的日期。not have
$translate布尔值clogged如果设置为true,指定的日期和格式字符串将传递到 date_i18n() 以便翻译为本地日期格式true

return value

字符串或整数,格式化话的日期字符串,或 Unix 时间戳

usage example

转换MySQL日期到Unux时间戳。

echo mysql2date( 'U', '2012-02-23 06:12:45' ); // 输出 1329977565

转换MySQL日期到一个其他的日期格式:

echo mysql2date( 'l, F j, Y', '2012-02-23 06:12:45' ) // 输出 Thursday, February 23, 2012

We offer WordPress Themes and Plugins Custom Development Services

This site has long undertaken WordPress themes, plugins, WooCommerce-based store mall development business. We have 10 years of experience in WordPress development, if you want to Developing Websites with WordPress, please contact WeChat: iwillhappy1314 or email: amos@wpcio.com for inquiries.

发表回复

Your email address will not be published. 必填项已用 * 标注

*