Changeset 30144
- Timestamp:
- 11/01/2014 03:28:11 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/date.php
r30142 r30144 108 108 * of top-level $column. Accepts 'post_date', 'post_date_gmt', 109 109 * 'post_modified', 'post_modified_gmt', 'comment_date', 'comment_date_gmt'. 110 * @type string $compare Optional. The comparison operator. Default '='. Accepts '=', '!=', 111 * '>', '>=', '<', '<=', 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN'. 112 * @type bool $inclusive Optional. Include results from dates specified in 'before' or 'after'. 113 * Default. Accepts. 114 * @type int $year Optional. The four-digit year number. Default empty. Accepts any 115 * four-digit year. 116 * @type int $month Optional. The two-digit month number. Default empty. Accepts numbers 1-12. 117 * @type int $week Optional. The week number of the year. Default empty. Accepts numbers 0-53. 118 * @type int $dayofyear Optional. The day number of the year. Default empty. Accepts numbers 1-366. 119 * @type int $day Optional. The day of the month. Default empty. Accepts numbers 1-31. 120 * @type int $dayofweek Optional. The day number of the week. Default empty. Accepts numbers 1-7 (1 is Sunday). 110 * @type string $compare Optional. The comparison operator. Default '='. 111 * Accepts '=', '!=', '>', '>=', '<', '<=', 'IN', 'NOT IN', 112 * 'BETWEEN', 'NOT BETWEEN'. 113 * @type bool $inclusive Optional. Include results from dates specified in 'before' or 114 * 'after'. Default false. 115 * @type int $year Optional. The four-digit year number. Default empty. Accepts 116 * any four-digit year. 117 * @type int $month Optional. The two-digit month number. Default empty. 118 * Accepts numbers 1-12. 119 * @type int $week Optional. The week number of the year. Default empty. 120 * Accepts numbers 0-53. 121 * @type int $dayofyear Optional. The day number of the year. Default empty. 122 * Accepts numbers 1-366. 123 * @type int $day Optional. The day of the month. Default empty. 124 * Accepts numbers 1-31. 125 * @type int $dayofweek Optional. The day number of the week. Default empty. 126 * Accepts numbers 1-7 (1 is Sunday). 121 127 * @type int $dayofweek_iso Optional. The day number of the week (ISO). Default empty. 122 128 * Accepts numbers 1-7 (1 is Monday). 123 * @type int $hour Optional. The hour of the day. Default empty. Accepts numbers 0-23. 124 * @type int $minute Optional. The minute of the hour. Default empty. Accepts numbers 0-60. 125 * @type int $second Optional. The second of the minute. Default empty. Accepts numbers 0-60. 129 * @type int $hour Optional. The hour of the day. Default empty. Accepts numbers 0-23. 130 * @type int $minute Optional. The minute of the hour. Default empty. Accepts 131 * numbers 0-60. 132 * @type int $second Optional. The second of the minute. Default empty. 133 * Accepts numbers 0-60. 126 134 * } 127 135 * }
Note: See TracChangeset
for help on using the changeset viewer.