Htaccess    html   Php    javascript   Asp   css    maths  Past Questions  Practice Tests Online

strptime function syntax tag tutorial 2013 Donate at flattr Flattr this





Alert! Connect with 10,000 Chating Online. Join Now

Php strptime () function

Write your php code

 
<?php ?>

Php Result


Your code below



(no version information, might be only in CVS)

strptime --  Parse a time/date generated with strftime()

Syntax

array strptime ( string timestamp, string format )

strptime() returns an array with the timestamp parsed, or FALSE on error.

Month and weekday names and other language dependent strings respect the current locale set with setlocale() (LC_TIME).

Parameters

timestamp (string)

A timestamp (e.g. returned from strftime())

format (string)

The format used in timestamp (e.g. the same as used in strftime()).

For more information about the format options, read the strftime() page.

Return Values

Returns an array, or FALSE on failure.

Table 1. The following parameters are returned in the array

parametersSyntax
tm_secSeconds after the minute (0-61)
tm_minMinutes after the hour (0-59)
tm_hourHour since midnight (0-23)
tm_mdayDay of the month (1-31)
tm_monMonths since January (0-11)
tm_yearYears since 1900
tm_wdayDays since Sunday (0-6)
tm_ydayDays since January 1 (0-365)
unparsedthe timestamp part which was not recognized using the specified format

Examples

Example 1. strptime() example

<?php
$format
= '%d/%m/%Y %H:%M:%S';
$strf = strftime($format);

echo
"$strf\n";

print_r(strptime($strf, $format));
?>

The above example will output something similar to:

03/10/2004 15:54:19

Array
(
    [tm_sec] => 19
    [tm_min] => 54
    [tm_hour] => 15
    [tm_mday] => 3
    [tm_mon] => 9
    [tm_year] => 104
    [tm_wday] => 0
    [tm_yday] => 276
    [unparsed] =>
)

See Also

strftime()

Note: This function is not implemented on Windows platforms.

Php strptime Function syntax tag

strptime php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online



Php strptime syntax tutorial

php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.


Function index

Variables

Expressions

Operators

Control-Structures

Cookies

Array

Date & Time

Directory function

File

Image

Operators

Form data handling

Mathematics operators

Mail

Php Mysql

Network Functions

Strings

php tutorial guides,functions, classes, code examples and tags for creating simple dynamic site to mysql database driven sites
 
 
Htaccess    html   Php    javascript   Asp   css    maths  Past Questions  Practice Tests Online