Changeset 48104 for trunk/src/wp-includes/functions.php
- Timestamp:
- 06/20/2020 12:00:07 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r48100 r48104 1004 1004 * @see https://www.php.net/manual/en/function.http-build-query.php 1005 1005 * 1006 * @param array|object $data An array or object of data. Converted to array. 1007 * @param string $prefix Optional. Numeric index. If set, start parameter numbering with it. 1008 * Default null. 1009 * @param string $sep Optional. Argument separator; defaults to 'arg_separator.output'. 1010 * Default null. 1011 * @param string $key Optional. Used to prefix key name. Default empty. 1012 * @param bool $urlencode Optional. Whether to use urlencode() in the result. Default true. 1013 * 1006 * @param array|object $data An array or object of data. Converted to array. 1007 * @param string $prefix Optional. Numeric index. If set, start parameter numbering with it. 1008 * Default null. 1009 * @param string $sep Optional. Argument separator; defaults to 'arg_separator.output'. 1010 * Default null. 1011 * @param string $key Optional. Used to prefix key name. Default empty. 1012 * @param bool $urlencode Optional. Whether to use urlencode() in the result. Default true. 1014 1013 * @return string The query string. 1015 1014 */ … … 4019 4018 * @deprecated 5.3.0 This function is no longer needed as support for PHP 5.2-5.3 4020 4019 * has been dropped. 4021 * @access 4020 * @access private 4022 4021 * 4023 4022 * @param mixed $data Native representation. … … 4412 4411 * @since 3.0.0 4413 4412 * 4414 * @param array|string $list List of ids.4413 * @param array|string $list List of IDs. 4415 4414 * @return int[] Sanitized array of IDs. 4416 4415 */ … … 6956 6955 6957 6956 /** 6958 * Get unique ID.6957 * Gets unique ID. 6959 6958 * 6960 6959 * This is a PHP implementation of Underscore's uniqueId method. A static variable … … 6976 6975 6977 6976 /** 6978 * Get last changed date for the specified cache group.6977 * Gets last changed date for the specified cache group. 6979 6978 * 6980 6979 * @since 4.7.0 6981 6980 * 6982 6981 * @param string $group Where the cache contents are grouped. 6983 *6984 6982 * @return string UNIX timestamp with microseconds representing when the group was last changed. 6985 6983 */
Note: See TracChangeset
for help on using the changeset viewer.