Changeset 37674 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 06/10/2016 04:49:09 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/formatting.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r37669 r37674 2362 2362 * 2363 2363 * Slashes will first be removed if magic_quotes_gpc is set, see {@link 2364 * http ://www.php.net/magic_quotes} for more details.2364 * https://secure.php.net/magic_quotes} for more details. 2365 2365 * 2366 2366 * @since 0.71 … … 3036 3036 * @since 1.5.0 3037 3037 * 3038 * @param string $date_string Date and time in ISO 8601 format {@link http ://en.wikipedia.org/wiki/ISO_8601}.3038 * @param string $date_string Date and time in ISO 8601 format {@link https://en.wikipedia.org/wiki/ISO_8601}. 3039 3039 * @param string $timezone Optional. If set to GMT returns the time minus gmt_offset. Default is 'user'. 3040 3040 * @return string The date and time in MySQL DateTime format - Y-m-d H:i:s. … … 3833 3833 * Convert entities, while preserving already-encoded entities. 3834 3834 * 3835 * @link http ://www.php.net/htmlentities Borrowed from the PHP Manual user notes.3835 * @link https://secure.php.net/htmlentities Borrowed from the PHP Manual user notes. 3836 3836 * 3837 3837 * @since 1.2.2 … … 4275 4275 * Parses a string into variables to be stored in an array. 4276 4276 * 4277 * Uses {@link http ://www.php.net/parse_str parse_str()} and stripslashes if4278 * {@link http ://www.php.net/magic_quotes magic_quotes_gpc} is on.4277 * Uses {@link https://secure.php.net/parse_str parse_str()} and stripslashes if 4278 * {@link https://secure.php.net/magic_quotes magic_quotes_gpc} is on. 4279 4279 * 4280 4280 * @since 2.2.1 … … 4329 4329 * 4330 4330 * @since 2.5.0 4331 * @link http ://www.php.net/sprintf4331 * @link https://secure.php.net/sprintf 4332 4332 * 4333 4333 * @param string $pattern The string which formatted args are inserted.
Note: See TracChangeset
for help on using the changeset viewer.