Search
 
SCRIPT & CODE EXAMPLE
 

PHP

time characters php

<?php
 
  /* This answer is about date and time
 
  The syntax for date and time is:
  */
 
  date(format,timestamp)
 
  /* Here, format is required and it specifies the format of the timestamp,
  while timestamp is optional and specifies a timestamp. Default value
  for timestamp is current date and time */
 
  #Some characters that are commonly used for dates are:
  
  l (Lowercase L) - Represents day of the week
  d - Tells the day of the month
  m - Tells the month of the year
  Y - Represents a year
  
  echo "Today is " . date("m/d/Y") . "<br>";
  echo "Today is " . date("m.d.Y") . "<br>";
  echo "Today is " . date("m-d-Y") . "<br>";
  echo "Today is " . date("l");
  
  #Some characters that are commonly used for time are:

  H - 24-hour format of an hour (0 to 23)
  h - 12-hour format of an hour (0 to 12)
  i - Minute with leading zeros (0 to 59)
  s - Seconds with leading zeros (0 to 59)
  a - am or pm
    
  echo "The time is " . date("h:i:sa");
  echo "The time is " . date("H:i:s");

  #Set timezones

  date_default_timezone_set("America/New_York");

  #You can access every timezone here: https://www.php.net/manual/en/timezones.php

  #The timezone by default is UTC

  #mktime()

  mktime(hour, minute, second, month, day, year) #Syntax
    
  $d=mktime(01, 1, 1, 1, 01, 0001);
  echo "Created date is " . date("Y-m-d h:i:sa", $d);

  #strtotime
  
  $d=strtotime("4:33am December 6 2011");
  echo "Created date is " . date("Y-m-d h:i:sa", $d);

  $d=strtotime("tomorrow");
  echo date("Y-m-d h:i:sa", $d) . "<br>";

  $d=strtotime("next Saturday");
  echo date("Y-m-d h:i:sa", $d) . "<br>";

  $d=strtotime("+3 Months");
  echo date("Y-m-d h:i:sa", $d) . "<br>";

  strtotime(time, now) #Syntax
    
  #Due to limitations, there is another page for every other thing of Date and Time
    
  #Search "Date and Time PHP Continued"  
  
?>
Comment

PREVIOUS NEXT
Code Example
Php :: laravel nginx 
Php :: how to access array using key in php 
Php :: get romawi number php 
Php :: naming convention for magento2 custom cms page index xml file 
Php :: php create html code 
Php :: Function create_function() is deprecated in 
Php :: console.log for php 
Php :: wp wc php out of stock product to bottom 
Php :: php define variables from array associative 
Php :: append variable into string php 
Php :: sqlstate[22023]: invalid parameter value: 
Php :: Update page template and remove page editor in wordpress 
Php :: spatie laravel pdf image 
Php :: laravel auth sha-1 
Php :: laravel email validation 
Php :: scirvere su file php 
Php :: php file iterator 
Php :: php get today at 3pm 
Php :: consumir soap php 
Php :: laravel find model inside the same model 
Php :: laravel combo unique validation 
Php :: "IlluminateDatabaseEloquentMassAssignmentException" 
Php :: laravel withwhere 
Php :: phpstorm using extract to create variales 
Php :: Undefined property: stdClass::$ 
Php :: bulk write mongodb php 
Php :: selecting data from two tables in database php 
Php :: artisan app name 
Php :: php else 
Php :: php 2 decimal even if not exists 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =