PHP Classes

File: vendor/wp-coding-standards/wpcs/WordPress/Docs/DateTime/CurrentTimeTimestampStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/wp-coding-standards/wpcs/WordPress/Docs/DateTime/CurrentTimeTimestampStandard.xml   Download  
File: vendor/wp-coding-standards/wpcs/WordPress/Docs/DateTime/CurrentTimeTimestampStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 26 days ago
Size: 1,080 bytes
 

Contents

Class file image Download
<documentation title="Current Time Timestamp"> <standard> <![CDATA[ Don't use current_time() to get a timestamp as it doesn't produce a Unix (UTC) timestamp, but a "WordPress timestamp", i.e. a Unix timestamp with current timezone offset. ]]> </standard> <code_comparison> <code title="Valid: using time() to get a Unix (UTC) timestamp."> <![CDATA[ $timestamp = <em>time()</em>; ]]> </code> <code title="Invalid: using current_time() to get a Unix (UTC) timestamp."> <![CDATA[ $timestamp = <em>current_time( 'timestamp', true )</em>; ]]> </code> </code_comparison> <code_comparison> <code title="Valid: using current_time() with a non-timestamp format."> <![CDATA[ $timestamp = current_time( <em>'Y-m-d'</em> ); ]]> </code> <code title="Invalid: using current_time() to get a timezone corrected timestamp."> <![CDATA[ $timestamp = <em>current_time( 'U', false )</em>; ]]> </code> </code_comparison> </documentation>