rfc:datetime_tostring
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
rfc:datetime_tostring [2012/09/01 10:05] – created willfitch | rfc:datetime_tostring [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
* Date: 2012-09-01 | * Date: 2012-09-01 | ||
* Author: Will Fitch < | * Author: Will Fitch < | ||
- | * Status: | + | * Status: |
===== Introduction ===== | ===== Introduction ===== | ||
Line 53: | Line 53: | ||
</ | </ | ||
+ | **Debug Output** | ||
+ | <code php> | ||
+ | <?php | ||
+ | $date = new DateTime(' | ||
+ | print_r($date); | ||
+ | |||
+ | $date-> | ||
+ | print_r($date); | ||
+ | ?> | ||
+ | </ | ||
+ | |||
+ | This will output the following: | ||
+ | < | ||
+ | DateTime Object | ||
+ | ( | ||
+ | [date] => 2012-09-01 02:43:00 | ||
+ | [timezone_type] => 3 | ||
+ | [timezone] => America/ | ||
+ | ) | ||
+ | DateTime Object | ||
+ | ( | ||
+ | [date] => 2012-09-01 02:43:00 | ||
+ | [timezone_type] => 3 | ||
+ | [timezone] => America/ | ||
+ | [default_pattern] => Y-m-d | ||
+ | ) | ||
+ | </ | ||
+ | |||
+ | As you can see, the default pattern is managed via a class property called " | ||
===== Patch ===== | ===== Patch ===== | ||
rfc/datetime_tostring.1346493903.txt.gz · Last modified: 2025/04/03 13:08 (external edit)