SlideShare uma empresa Scribd logo
1 de 3
Baixar para ler offline
A	
  simple	
  PHP	
  exercise	
  on	
  date(	
  )	
  
	
  
Exercise:	
  
Given	
  the	
  following	
  codes:	
  
	
  

Today's date is
<?php
echo date("");
?>
<br>
The time now on the server is
<?php
echo date("");
?>

	
  
Modify	
  the	
  code	
  so	
  that	
  you	
  will	
  get	
  the	
  following	
  output:	
  
	
  
Today's date is Thu, 16-Jan-2014
The time now on the server is 13:12:04

	
  
	
  
	
  
Part	
  1	
  Step	
  by	
  Step:	
  

	
  
Step	
  1:	
  
	
  
From	
  the	
  given	
  information,	
  we	
  are	
  able	
  to	
  put	
  in	
  the	
  comma,	
  the	
  blank	
  space	
  
and	
  the	
  dashes	
  into	
  the	
  date(	
  )	
  function	
  as	
  follows:	
  
	
  

Today's	
  date	
  is	
  	
  
<?php	
  
	
  	
  echo	
  date("?,	
  	
  ?-­‐?-­‐?");	
  
?>	
  
	
  

Step	
  2:	
  find	
  the	
  appropriate	
  format	
  to	
  replace	
  the	
  ?	
  
	
  
Locate	
  the	
  php	
  Manual	
  by:	
  
	
  
1. Google	
  “php	
  manual”	
  and	
  click	
  on	
  the	
  appropriate	
  link:	
  
	
  

	
  

	
  
 
2. Use	
  the	
  searchbox	
  on	
  the	
  right	
  side,	
  type	
  “date”	
  and	
  click	
  on	
  the	
  “date”	
  
function:	
  
	
  

	
  
3. Refer	
  to	
  the	
  formats	
  listed,	
  such	
  as:	
  
	
  

	
  

	
  

:	
  

	
  

:	
  

	
  

:	
  
	
  
4. Put	
  the	
  above	
  format	
  into	
  the	
  date(	
  )	
  function	
  and	
  run	
  the	
  code	
  through	
  your	
  
XAMPP	
  or	
  WAMP	
  servers:	
  

	
  
Today's	
  date	
  is	
  	
  
<?php	
  
	
  	
  echo	
  date("D,	
  	
  d-­‐M-­‐Y");	
  
?>	
  
	
  
Output:	
  
	
  

Today's date is Tue, 21-Jan-2014

	
  
	
  
Part	
  2:	
  
Now	
  try	
  Part	
  2	
  on	
  your	
  own.	
  	
  Answer	
  on	
  the	
  next	
  page.	
  
	
  

The	
  time	
  now	
  on	
  the	
  server	
  is	
  	
  
<?php	
  
	
  	
  echo	
  date("");	
  
?>	
  
	
  

The time now on the server is 13:12:04

	
  
	
  

	
  

	
  
Solution:	
  
	
  

The	
  time	
  now	
  on	
  the	
  server	
  is	
  	
  
<?php	
  
	
  	
  echo	
  date("G:i:s");	
  
?>	
  
	
  
	
  
Extra	
  –	
  setting	
  the	
  correct	
  timezone	
  
There	
  are	
  two	
  ways	
  to	
  set	
  the	
  timezone:	
  
	
  
1. Use	
  the	
  date.timezone	
  setting	
  in	
  the	
  php.ini	
  file	
  –	
  this	
  will	
  affect	
  all	
  php	
  
files.	
  
	
  

	
  
Change	
  from	
  the	
  default	
  to	
  your	
  own	
  timezone	
  eg	
  Asia/Singapore	
  
	
  

	
  

	
  
	
  
2. Use	
  the	
  date_default_timezone_set()	
  function	
  before	
  the	
  date(	
  )	
  function–	
  
this	
  will	
  only	
  affect	
  the	
  current	
  file.	
  
	
  

Today's	
  date	
  is	
  	
  
<?php	
  
	
  	
  date_default_timezone_set("Asia/Singapore");	
  
	
  	
  echo	
  date("D,	
  	
  d-­‐M-­‐Y");	
  
?>	
  

Mais conteúdo relacionado

Semelhante a A simple php exercise on date( ) function

2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real
PHP Conference Argentina
 
Search Lucene
Search LuceneSearch Lucene
Search Lucene
Jeremy Coates
 
Setting up a debugging environment for Drupal
Setting up a debugging environment for DrupalSetting up a debugging environment for Drupal
Setting up a debugging environment for Drupal
jonlee554
 
1 Introduction to PHP Overview This lab walks y.docx
1  Introduction to PHP Overview This lab walks y.docx1  Introduction to PHP Overview This lab walks y.docx
1 Introduction to PHP Overview This lab walks y.docx
honey725342
 

Semelhante a A simple php exercise on date( ) function (20)

PHP and MySQL : Server Side Scripting For Web Development
PHP and MySQL : Server Side Scripting For Web DevelopmentPHP and MySQL : Server Side Scripting For Web Development
PHP and MySQL : Server Side Scripting For Web Development
 
Mantis Installation for Windows Box
Mantis Installation for Windows BoxMantis Installation for Windows Box
Mantis Installation for Windows Box
 
Mantis Installation for Windows Box
Mantis Installation for Windows BoxMantis Installation for Windows Box
Mantis Installation for Windows Box
 
PHP Quiz
PHP QuizPHP Quiz
PHP Quiz
 
Php Conference Brazil - Phalcon Giant Killer
Php Conference Brazil - Phalcon Giant KillerPhp Conference Brazil - Phalcon Giant Killer
Php Conference Brazil - Phalcon Giant Killer
 
PHP Unit-1 Introduction to PHP
PHP Unit-1 Introduction to PHPPHP Unit-1 Introduction to PHP
PHP Unit-1 Introduction to PHP
 
Phpbasics
PhpbasicsPhpbasics
Phpbasics
 
2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real
 
Search Lucene
Search LuceneSearch Lucene
Search Lucene
 
Effizientere WordPress-Plugin-Entwicklung mit Softwaretests
Effizientere WordPress-Plugin-Entwicklung mit SoftwaretestsEffizientere WordPress-Plugin-Entwicklung mit Softwaretests
Effizientere WordPress-Plugin-Entwicklung mit Softwaretests
 
PHP
PHPPHP
PHP
 
Setting up a debugging environment for Drupal
Setting up a debugging environment for DrupalSetting up a debugging environment for Drupal
Setting up a debugging environment for Drupal
 
Gearman and asynchronous processing in PHP applications
Gearman and asynchronous processing in PHP applicationsGearman and asynchronous processing in PHP applications
Gearman and asynchronous processing in PHP applications
 
Gearman and asynchronous processing in PHP applications
Gearman and asynchronous processing in PHP applicationsGearman and asynchronous processing in PHP applications
Gearman and asynchronous processing in PHP applications
 
WEB TECHNOLOGIES- PHP Programming
WEB TECHNOLOGIES-  PHP ProgrammingWEB TECHNOLOGIES-  PHP Programming
WEB TECHNOLOGIES- PHP Programming
 
Phalcon 2 - PHP Brazil Conference
Phalcon 2 - PHP Brazil ConferencePhalcon 2 - PHP Brazil Conference
Phalcon 2 - PHP Brazil Conference
 
Capistrano
CapistranoCapistrano
Capistrano
 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx Version
 
1 Introduction to PHP Overview This lab walks y.docx
1  Introduction to PHP Overview This lab walks y.docx1  Introduction to PHP Overview This lab walks y.docx
1 Introduction to PHP Overview This lab walks y.docx
 
Parallel programming c++ win10 msmpi visual studio
Parallel programming c++ win10 msmpi visual studioParallel programming c++ win10 msmpi visual studio
Parallel programming c++ win10 msmpi visual studio
 

Mais de Hock Leng PUAH

CSS Basic and Common Errors
CSS Basic and Common ErrorsCSS Basic and Common Errors
CSS Basic and Common Errors
Hock Leng PUAH
 
Connectivity Test for EES Logic Probe Project
Connectivity Test for EES Logic Probe ProjectConnectivity Test for EES Logic Probe Project
Connectivity Test for EES Logic Probe Project
Hock Leng PUAH
 

Mais de Hock Leng PUAH (20)

ASP.net Image Slideshow
ASP.net Image SlideshowASP.net Image Slideshow
ASP.net Image Slideshow
 
Visual basic asp.net programming introduction
Visual basic asp.net programming introductionVisual basic asp.net programming introduction
Visual basic asp.net programming introduction
 
Using iMac Built-in Screen Sharing
Using iMac Built-in Screen SharingUsing iMac Built-in Screen Sharing
Using iMac Built-in Screen Sharing
 
Hosting SWF Flash file
Hosting SWF Flash fileHosting SWF Flash file
Hosting SWF Flash file
 
PHP built-in functions date( ) and mktime( ) to calculate age from date of birth
PHP built-in functions date( ) and mktime( ) to calculate age from date of birthPHP built-in functions date( ) and mktime( ) to calculate age from date of birth
PHP built-in functions date( ) and mktime( ) to calculate age from date of birth
 
PHP built-in function mktime example
PHP built-in function mktime examplePHP built-in function mktime example
PHP built-in function mktime example
 
Integrate jQuery PHP MySQL project to JOOMLA web site
Integrate jQuery PHP MySQL project to JOOMLA web siteIntegrate jQuery PHP MySQL project to JOOMLA web site
Integrate jQuery PHP MySQL project to JOOMLA web site
 
Responsive design
Responsive designResponsive design
Responsive design
 
Step by step guide to use mac lion to make hidden folders visible
Step by step guide to use mac lion to make hidden folders visibleStep by step guide to use mac lion to make hidden folders visible
Step by step guide to use mac lion to make hidden folders visible
 
Beautiful web pages
Beautiful web pagesBeautiful web pages
Beautiful web pages
 
CSS Basic and Common Errors
CSS Basic and Common ErrorsCSS Basic and Common Errors
CSS Basic and Common Errors
 
Connectivity Test for EES Logic Probe Project
Connectivity Test for EES Logic Probe ProjectConnectivity Test for EES Logic Probe Project
Connectivity Test for EES Logic Probe Project
 
Logic gate lab intro
Logic gate lab introLogic gate lab intro
Logic gate lab intro
 
Ohm's law, resistors in series or in parallel
Ohm's law, resistors in series or in parallelOhm's law, resistors in series or in parallel
Ohm's law, resistors in series or in parallel
 
Connections Exercises Guide
Connections Exercises GuideConnections Exercises Guide
Connections Exercises Guide
 
Design to circuit connection
Design to circuit connectionDesign to circuit connection
Design to circuit connection
 
NMS Media Services Jobshet 1 to 5 Summary
NMS Media Services Jobshet 1 to 5 SummaryNMS Media Services Jobshet 1 to 5 Summary
NMS Media Services Jobshet 1 to 5 Summary
 
Virtualbox step by step guide
Virtualbox step by step guideVirtualbox step by step guide
Virtualbox step by step guide
 
Nms chapter 01
Nms chapter 01Nms chapter 01
Nms chapter 01
 
Pedagogic Innovation to Engage Academically Weaker Students
Pedagogic Innovation to Engage Academically Weaker StudentsPedagogic Innovation to Engage Academically Weaker Students
Pedagogic Innovation to Engage Academically Weaker Students
 

Último

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
SanaAli374401
 

Último (20)

Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 

A simple php exercise on date( ) function

  • 1. A  simple  PHP  exercise  on  date(  )     Exercise:   Given  the  following  codes:     Today's date is <?php echo date(""); ?> <br> The time now on the server is <?php echo date(""); ?>   Modify  the  code  so  that  you  will  get  the  following  output:     Today's date is Thu, 16-Jan-2014 The time now on the server is 13:12:04       Part  1  Step  by  Step:     Step  1:     From  the  given  information,  we  are  able  to  put  in  the  comma,  the  blank  space   and  the  dashes  into  the  date(  )  function  as  follows:     Today's  date  is     <?php      echo  date("?,    ?-­‐?-­‐?");   ?>     Step  2:  find  the  appropriate  format  to  replace  the  ?     Locate  the  php  Manual  by:     1. Google  “php  manual”  and  click  on  the  appropriate  link:        
  • 2.   2. Use  the  searchbox  on  the  right  side,  type  “date”  and  click  on  the  “date”   function:       3. Refer  to  the  formats  listed,  such  as:         :     :     :     4. Put  the  above  format  into  the  date(  )  function  and  run  the  code  through  your   XAMPP  or  WAMP  servers:     Today's  date  is     <?php      echo  date("D,    d-­‐M-­‐Y");   ?>     Output:     Today's date is Tue, 21-Jan-2014     Part  2:   Now  try  Part  2  on  your  own.    Answer  on  the  next  page.     The  time  now  on  the  server  is     <?php      echo  date("");   ?>     The time now on the server is 13:12:04        
  • 3. Solution:     The  time  now  on  the  server  is     <?php      echo  date("G:i:s");   ?>       Extra  –  setting  the  correct  timezone   There  are  two  ways  to  set  the  timezone:     1. Use  the  date.timezone  setting  in  the  php.ini  file  –  this  will  affect  all  php   files.       Change  from  the  default  to  your  own  timezone  eg  Asia/Singapore           2. Use  the  date_default_timezone_set()  function  before  the  date(  )  function–   this  will  only  affect  the  current  file.     Today's  date  is     <?php      date_default_timezone_set("Asia/Singapore");      echo  date("D,    d-­‐M-­‐Y");   ?>