WooCommerce预订 - 在自定义日期格式上比较两个带有PHP的时间戳

时间:2016-08-14 09:01:48

标签: php wordpress date woocommerce timestamp

使用WooCommerce Bookings plugin,我正在开发一个系统,我必须用PHP比较两个日期。

我有下一个sql查询来获取这个日期:

 $consulta2="SELECT meta_value FROM pwkynbjbwoocommerce_order_itemmeta WHERE  meta_key='Fecha de Reserva' AND order_item_id=".$row["order_item_id"];

Fecha de Reserva 为我们提供西班牙语日期,例如 septiembre 2016 septiembre 1, 2016 (2016年9月)或者,例如,2016年9月1日)。

我想将一个日期与"今天"进行比较,所以我尝试使用这个PHP代码:

 if (strtotime($row2["meta_value"])>time()){}

但它不起作用。

我如何实现这一目标?

由于

1 个答案:

答案 0 :(得分:2)

是的,这个自定义函数可以在一个关联数组中列出以数字月为键的西班牙语月份,并重新排序日期以通过strtotime()函数输出它。此功能还可以使用' now'返回当前时间。作为参数。

这是功能代码:

function bk_date( $date ) {

    // Removing the coma (if there is a coma + a space)
    $my_time = str_replace ( ',', '', $date );
    // or replacing the coma by a space (if there is a coma alone without a space)
    // $my_time = str_replace ( ',', ' ', $the_date );

    $my_time_arr = explode( ' ', $my_time );
    $my_time_count = count( $my_time_arr );
    $month = $my_time_arr[0];
    if ( count( $my_time_arr ) > 2 ) { // When there is the month, the day and the year
        // Formating the day in 2 digits
        $day = $my_time_arr[1] < 10 ? '0'.$my_time_arr[1] : $my_time_arr[1];
        $year = $my_time_arr[2];
    } else { // When there is the month, the day and the year
        $year = $my_time_arr[1];
    }
    // Array of spanish month
    $month_arr = array('01' => 'enero', '02' => 'febrero', '03' => 'marzo', '04' => 'abril', '05' => 'mayo', '06' => 'junio', '07' => 'julio', '08' => 'agosto', '09' => 'septiembre', '10' => 'octubre', '11' => 'noviembre', '12' => 'diciembre');

    // Browse the list of month and compare (when $value match, it's replace by the index $key
    foreach ( $month_arr as $key => $value ) {
        if ( $month == $value ) {
            $month = $key;
            break;
        }
    }
    if ( count( $my_time_arr ) > 2 )
        $result = $year . '-' . $month . '-' . $day;
    else
        $result = $year . '-' . $month;

    return $date == 'now' ? strtotime( $date ) : strtotime( $result );
}

此代码位于您的活动子主题或主题的function.php文件中。

因为我真的不知道日期是 septiembre 1, 2016 还是喜欢 septiembre 1,2016 (昏迷后没有空格) ),你会在上面的代码中找到一个评论的替代品。

我的代码也适用于 febrero, 2016 febrero 2016 日期格式。

请检查我在 $month_arr 数组中的月份名称是否有任何错误...

  

<强>用法:

echo bk_date($row2["meta_value"]); // display the timestamp of your spanish date.

// Comparing 2 timestamps (bk_date('now') return the "current time").
if ( bk_date($row2["meta_value"]) > bk_date('now') ) {
    // do something
}