为了账号安全,请及时绑定邮箱和手机立即绑定

显示特定日期的函数结果

显示特定日期的函数结果

PHP
动漫人物 2023-12-15 15:47:18
我有这个功能function show_contents(){$post_id = 3135;$post_content = get_post($post_id);$content = $post_content->post_content;$content_final =  '<p style="line-height:1; color:white; font-family:Georgia, serif;">';apply_filters('the_content',$content);$content_final .= '</p>';return $content_final;}我想在星期一打印结果。对于打印我有这个代码 date_default_timezone_set('Europe/Copenhagen'); $day = date("l"); if( $day == "Monday"){ show_contents();}但我在帖子中没有看到我放置 XYZ Php 代码插件的简码的内容。
查看完整描述

1 回答

?
阿晨1998

TA贡献2037条经验 获得超6个赞

尝试这个:


$day = date("l");


switch(date("N"))

{

 case 1: //Monday

 {

   show_contents(); break;

 }

 case 2: //Tuesday

 {

   // other function

   break;

 }


  // Add the other week days here if you nees (3,4,5 and 6)


 case 7: //Sunday

 {

   // other function

   break;

 }

  

}


查看完整回答
反对 回复 2023-12-15
  • 1 回答
  • 0 关注
  • 97 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信