Quick Search:
CODE
Oracle PL/SQL Code Library
JOBS
Find Or Post Oracle Jobs
FORUM
Oracle Discussion & Chat
 PHP Code: String to Date Jump to:  
Category: >> PHP Code >> String to Date

<<last next>>

Snippet Name: String to Date

Description: Convert almost any English textual representation of a date into a timestamp.

Also see:
» Delete files older than 'X'
» Create string by formatting an amount ...
» Search PL/SQL for a string/ key value
» INSTR (InString)
» SUBSTR (SubString)
» Generate unique strings of random numb...
» String Functions: REVERSE
» String Functions: LENGTH
» String Functions: INSTR
» String Functions: CONCAT
» String Functions: CHAR
» String Functions: INITCAP
» String Functions: LOWER
» String Functions: UPPER
» Sort comma separated string
» String to Date
» Month, Day, Year dropdown boxes
» Calculate date of Easter Sunday
» Define a schedule of holidays
» Calendar for any month any year
» Generate random string
» Add & Subract dates
» Basic PHP Calendar
» De-Pluralize a String
» Add string to field
» Column copy with string replacement
» Extract part of a string
» Finding a substring in a string
» Make comma-separated list of strings
» Function For String Handling

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<?PHP 
 
ECHO STRTOTIME ("now"), "\n"; 
ECHO STRTOTIME ("10 September 2000"), "\n"; 
ECHO STRTOTIME (" 1 day"), "\n"; 
ECHO STRTOTIME (" 1 week"), "\n"; 
ECHO STRTOTIME (" 1 week 2 days 4 hours 2 seconds"), "\n"; 
ECHO STRTOTIME ("next Thursday"), "\n"; 
ECHO STRTOTIME ("last Monday"), "\n"; 
?> 
 
Checking for failure 
<?PHP 
$str = 'Not Good'; 
IF (($timestamp = STRTOTIME($str)) === -1) { 
    ECHO "The string ($str) is bogus"; 
} ELSE { 
    ECHO "$str == ". DATE('l dS of F Y h:i:s A',$timestamp); 
} 
?>
 

Free Oracle Magazine Subscriptions
and Oracle White Papers

SQL University.net courses meet the most demanding needs of the business world for advanced education in a cost-effective manner. SQL University.net courses are available immediately for IT professionals and can be taken without disruption of your workplace schedule or processes.

Compared to traditional travel-based training, SQL University.net saves time and valuable corporate resources, allowing companies to do more with less. That's our mission, and that's what we deliver.

Click here to find out more
 
Home      :      Code Library      :      Sponsors      :      Privacy      :      Terms of Use      :      Contact Us [155] visitors online    © 2009 psoug.org
PSOUG LOGIN
Username: 
Password: 
Forgot your password?