Home  >  Article  >  Backend Development  >  How to get the week of the year today is in php

How to get the week of the year today is in php

藏色散人
藏色散人Original
2020-08-12 09:59:193668browse

php method to get the week of the year today is: first create a PHP sample file; then set the character format; then use the "$week = date('W');" method to get the year today is The first few weeks are enough.

How to get the week of the year today is in php

Recommendation: "PHP Video Tutorial"

This requires the use of the powerful date( ) function. Go directly to the code.

<?php
    header("Content-Type: text/html;charset=utf-8");  //可不要,在这里只是为了让确定字符格式,防止乱码。
    $week = date(&#39;W&#39;);
    echo &#39;今天是一年中的第&#39;.$week.&#39;周&#39;;
?>

PHP date() function can format the timestamp into a more readable date and time.

Tip timestamp is a character sequence that represents the date/time when a certain event occurred.

Grammar

string date ( string $format [, int $timestamp ] )

The above is the detailed content of How to get the week of the year today is in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn