Changeset 48102 for trunk/src/wp-includes/rest-api.php
- Timestamp:
- 06/20/2020 11:16:12 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api.php
r47923 r48102 716 716 * Recursively computes the intersection of arrays using keys for comparison. 717 717 * 718 * @since 5.3.0 719 * 718 720 * @param array $array1 The array with master keys to check. 719 721 * @param array $array2 An array to compare keys against. 720 * 721 * @return array An associative array containing all the entries of array1 which have keysthat are present in all arguments.722 * @return array An associative array containing all the entries of array1 which have keys 723 * that are present in all arguments. 722 724 */ 723 725 function _rest_array_intersect_key_recursive( $array1, $array2 ) { … … 739 741 * @param WP_REST_Server $server ResponseHandler instance (usually WP_REST_Server). 740 742 * @param WP_REST_Request $request The request that was used to make current response. 741 *742 743 * @return WP_REST_Response Response to be served, trimmed down to contain a subset of fields. 743 744 */
Note: See TracChangeset
for help on using the changeset viewer.