Flux rss

Verifying date format in PHP

Published by netty5, last update on Tuesday November 25, 2008 07:16:59 AM by netty5

Verifying date format in PHP






There are several ways to check the format of a date in PHP; the simplest method is to make use regular expressions.

To confirm a date format DD/MM/YYYY, where the days and/or month can be given as single number:

<?php
	function testDate( $value )
	{
		return preg_match( '`^\d{1,2}/\d{1,2}/\d{4}$`' , $value ) )
	}
	
	testDate( '21/11/1999' ); // -> true
	testDate( '3/9/2008' ); // -> true

	testDate( 'a/04/2003' ); // -> false
	testDate( '28-01-2000' ); // -> false

	testDate( '99/13/1978' ); // -> true
?>

Note that:
As the last call, this function does not check the validity of the date itself but only the validity of its format.
Date format in excel. Hello again, Is there a way to make excel read fields left padded with a 0. For example I have a program that only reads date format like this yymmdd, so when I open the csv file in excel it reads 080725 as 80725 instead. Then when I save any changes... en.kioskea.net/forum/affich-16756-date-format-in-excel
DATE FORMATTING IN dd/mm/yyyy Hello, i have got dates typed in the format following 01.08.98 and i want to change it to 01/08/1998 format.i tried applying the format we have in excel format cell date format but nothing is happening.please help me on this. en.kioskea.net/forum/affich-22133-date-formatting-in-dd-mm-yyyy
Connecting to an Ingres database with PHP Connecting to an Ingres database with PHP Getting started Download PECL Installation Windows Linux & Unix Getting connected This tip is based on following Ingres documentation: Getting started Ingres ® 2006 Release 2 for... en.kioskea.net/faq/sujet-923-connecting-to-an-ingres-database-with-php
Starting with visual basicStarting with visual basic Visual Basic is a programming tool designed by Microsoft for its Component Object Model (COM). This tool can be used to create applications for windows, web, mobile devices etc.The latest version of Visual basic... en.kioskea.net/faq/sujet-305-starting-with-visual-basic
Secure your php codeSecure your php code Validating the data users Validate data from URL or Forms Skip displayed content of the URL It is crucial to ensure secure data from users (forms and urls etc) apart from the OS server and http server mainly... en.kioskea.net/faq/sujet-1025-secure-your-php-code
Formatting with start up diskFormatting with start up disk Before Formatting Back of your important data Verify that you have all in hand Make sure the boot disk starts with the CD player Formatting Before Formatting Back of your import en.kioskea.net/faq/sujet-971-formatting-with-start-up-disk
Date Format issue in my Local MS_XP machineHello, Kindly help me. In My Server Machine having the SQL Database and Server machine Date Format as 'dd/MM/yyyy' and in my Client machine having to run my windows based application where showing the date format as 'mm/dd/yyyy'... en.kioskea.net/forum/affich-9370-date-format-issue-in-my-local-ms-xp-machine
Changin format of date in excelHello, I have an excel sheet which has lots of cells in a column with the date format as - day month date time year & I wish to convert that to dd/mm/yy. How can I do that, pls help. eg - I need to convert "sat Jun 29 00:00:00 PST 1996" to "29/06/96".... en.kioskea.net/forum/affich-28689-changin-format-of-date-in-excel
Calculating anniversary datesHello, I have a worksheet with several start dates in date format...mm/dd/yy. I want to find the upcoming key anniversary dates (5 years, 10 years, 15 years, 20 years, 25 years, 30 years, 35 years, 40 years, 45 years) of all employees so recognition... en.kioskea.net/forum/affich-32457-calculating-anniversary-dates
Download NaturCalendarNaturCalendar is a interactive calendar. It allows you to enter and register anniversaries, events, appointments, holidays and make reminders through a module integrated oral reminder. In addition, it offers international date formats and can apply... en.kioskea.net/telecharger/telecharger-1585-naturcalendar
Download CyklotronCyklotron offers a new method of market analysis. It offers new formulas, indicators and supports data formats: CSV and PRN. The application can also look east optimize the cycle of shares. The software is a shareware version which expire after 30... en.kioskea.net/telecharger/telecharger-1587-cyklotron
Download BIOS for motherboard Rampage FormulaYou like powerful Workstations? You are going surely to like the motherboard Rampage Formula from ASUS, this small technological jewel supports processors with numerous hearts of data processing and has to envy nothing the others. However, it is... en.kioskea.net/telecharger/telecharger-1469-bios-for-motherboard-rampage-formula
Databases - Using forms In order to use databases, the user must be provided with an interface that allows him or her to view data based on certain criteria. There is a tool for this: forms. A form is an interface with components for displaying, entering, or selecting data.... en.kioskea.net/bdd/bddform.php3
Data transmission - Digital transmission Digital transmission is the sending of information over a physical communications media in the form of digital signals. Analogue signals must therefore be digitised first before being transmitted. However, as digital information cannot be sent... en.kioskea.net/transmission/transnum.php3
Internet - UDP The UDP protocol (User Datagram Protocol) is a connectionless orientated protocol of the transport layer of the TCP/IP model. This protocol is very simple given that it does not provide error detection (it is not connection orientated...). The UDP... en.kioskea.net/internet/udp.php3