php 星期六和星期日定为$ 0

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 星期六和星期日定为$ 0相关的知识,希望对你有一定的参考价值。

function set_weekend_prices() {

    $prices = array(
        0 => array(
            'type'     => 'ebp_day',
            'date'     => '6',
            'repeat'   => 'on',
            'price'    => '0',
            'unit'     => 'ebp_single'
        ),
        1 => array(
            'type'     => 'ebp_day',
            'date'     => '7',
            'repeat'   => 'on',
            'price'    => '0',
            'unit'     => 'ebp_single'
        )
    );

    $args = array(
        'post_type'      => array( 'product', 'product_variation' ),
        'posts_per_page' => -1,
        'post_status'    => 'publish'
    );

    $query = new WP_Query( $args );

    while ( $query->have_posts() ) : $query->the_post();
        global $post;

        $post_id = $post->ID;

        update_post_meta( $post_id, '_ebp_product_prices', $prices );
        
    endwhile;
}

set_weekend_prices();

以上是关于php 星期六和星期日定为$ 0的主要内容,如果未能解决你的问题,请参考以下文章

php如何判断日期是否是周末(星期六和星期天)

php输出星期几

php date函数

PHP获取日期对应星期一周日期星期开始与结束日期的方法

php 获取周几

php已知日期获取星期