Question about the PHP read time number

Source: Internet
Author: User
Question about the PHP read time number
public function pai3(&$actionNo, &$actionTime, $time=null){$this->setTimeNo($actionTime, $time);//echo $actionTime,' ',date('Y-m-d H:i:s', $time);if($actionTime >= date('Y-m-d H:i:s', $time)){$actionNo = date('Yz', $time)-6;}else{$actionNo = date('Yz', $time)-6;$actionTime=date('Y-m-d 18:30', $time);}}

The year and number read by the code above. for example, I want to change 201456 to 2014056 to add one. how can I change it?


Reply to discussion (solution)

$year = date('Y', time());$day = str_pad(date('z',time()),3,'0',STR_PAD_LEFT);echo $year.$day;

$year = date('Y', time());$day = str_pad(date('z',time()),3,'0',STR_PAD_LEFT);echo $year.$day;

Can I add it to my code and send it to me?

public function pai3(&$actionNo, &$actionTime, $time=null){$this->setTimeNo($actionTime, $time);//echo $actionTime,' ',date('Y-m-d H:i:s', $time);$year = date('Y', $time);$day = str_pad(date('z',$time),3,'0',STR_PAD_LEFT);$times = $year.$day;if($actionTime >= date('Y-m-d H:i:s', $time)){$actionNo = $times-6;}else{$actionNo = $times-6;$actionTime=date('Y-m-d 18:30', $time);}}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.