Changeset 54929 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 12/03/2022 03:05:41 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r54927 r54929 5034 5034 * @since 2.2.1 5035 5035 * 5036 * @param string $input The string to be parsed.5037 * @param array $result Variables will be stored in this array.5038 */ 5039 function wp_parse_str( $input , &$result ) {5040 parse_str( (string) $input , $result );5036 * @param string $input_string The string to be parsed. 5037 * @param array $result Variables will be stored in this array. 5038 */ 5039 function wp_parse_str( $input_string, &$result ) { 5040 parse_str( (string) $input_string, $result ); 5041 5041 5042 5042 /**
Note: See TracChangeset
for help on using the changeset viewer.