“Php Get Jour à partir de la date” Réponses codées

Php Get Jour à partir de la date

$timestamp = strtotime('2009-10-22');

$day = date('D', $timestamp);
var_dump($day);
Lokesh003Coding

PHP Get Day Number

$today = date("d");
//Can Convert TO Int
print_r($today);

Obtenez le jour de la date PHP

// Prints the day
echo date("l") . "<br>";
Ankur

Obtenez jour par date en php

You can use the date function. I'm using strtotime to get the timestamp to that day ; there are other solutions, like mktime, for instance.

For instance, with the 'D' modifier, for the textual representation in three letters :

$timestamp = strtotime('2009-10-22');

$day = date('D', $timestamp);
var_dump($day);
You will get :

string 'Thu' (length=3)
And with the 'l' modifier, for the full textual representation :

$day = date('l', $timestamp);
var_dump($day);
You get :

string 'Thursday' (length=8)
Or the 'w' modifier, to get to number of the day (0 to 6, 0 being sunday, and 6 being saturday) :

$day = date('w', $timestamp);
var_dump($day);
You'll obtain :

string '4' (length=1)
Ankur

PHP obtenir la date du jour de l'année

// This should get you a DateTime object from the date and year.
function getDateFromDay($dayOfYear, $year) {
  $date = DateTime::createFromFormat('z Y', strval($dayOfYear) . ' ' . strval($year));
  return $date;
}

// This should get you the day of the year and the year in a string.
date('z Y', strtotime('21 oct 2012'));
Matteoweb

Réponses similaires à “Php Get Jour à partir de la date”

Questions similaires à “Php Get Jour à partir de la date”

Plus de réponses similaires à “Php Get Jour à partir de la date” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code