Changeset 48110 for trunk/src/wp-includes/functions.php
- Timestamp:
- 06/20/2020 12:57:00 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/functions.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r48109 r48110 2833 2833 * @since 3.0.0 2834 2834 * 2835 * @param array $mime_to_ext Array of image mime types and their matching extensions.2835 * @param array $mime_to_ext Array of image mime types and their matching extensions. 2836 2836 */ 2837 2837 $mime_to_ext = apply_filters( … … 4418 4418 * @since 4.7.0 4419 4419 * 4420 * @param array|string $list List of slugs.4420 * @param array|string $list List of slugs. 4421 4421 * @return string[] Sanitized array of slugs. 4422 4422 */ … … 6404 6404 * @link https://www.php.net/manual/en/function.checkdate.php 6405 6405 * 6406 * @param int $month Month number.6407 * @param int $day Day number.6408 * @param int $year Year number.6409 * @param string $source_date The date to filter.6406 * @param int $month Month number. 6407 * @param int $day Day number. 6408 * @param int $year Year number. 6409 * @param string $source_date The date to filter. 6410 6410 * @return bool True if valid date, false if not valid date. 6411 6411 */ … … 7070 7070 * @since 4.9.6 Abstracted from `WP_Community_Events::get_unsafe_client_ip()`. 7071 7071 * 7072 * @param string $ip_addrThe IPv4 or IPv6 address to be anonymized.7073 * @param bool $ipv6_fallbackOptional. Whether to return the original IPv6 address if the needed functions7074 * to anonymize it are not present. Default false, return `::` (unspecified address).7072 * @param string $ip_addr The IPv4 or IPv6 address to be anonymized. 7073 * @param bool $ipv6_fallback Optional. Whether to return the original IPv6 address if the needed functions 7074 * to anonymize it are not present. Default false, return `::` (unspecified address). 7075 7075 * @return string The anonymized IP address. 7076 7076 */ … … 7140 7140 * @since 4.9.6 7141 7141 * 7142 * @param string $type The type of data to be anonymized.7143 * @param string $data Optional The data to be anonymized.7142 * @param string $type The type of data to be anonymized. 7143 * @param string $data Optional The data to be anonymized. 7144 7144 * @return string The anonymous data for the requested type. 7145 7145 */
Note: See TracChangeset
for help on using the changeset viewer.