Changeset 53775 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 07/25/2022 03:41:10 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r53754 r53775 4345 4345 * @global wpdb $wpdb WordPress database abstraction object. 4346 4346 * 4347 * @param string|array $data Unescaped data 4348 * @return string|array Escaped data 4347 * @param string|array $data Unescaped data. 4348 * @return string|array Escaped data, in the same type as supplied. 4349 4349 */ 4350 4350 function esc_sql( $data ) { … … 5617 5617 * 5618 5618 * @param string|array $value String or array of data to slash. 5619 * @return string|array Slashed `$value` .5619 * @return string|array Slashed `$value`, in the same type as supplied. 5620 5620 */ 5621 5621 function wp_slash( $value ) { … … 5640 5640 * 5641 5641 * @param string|array $value String or array of data to unslash. 5642 * @return string|array Unslashed `$value` .5642 * @return string|array Unslashed `$value`, in the same type as supplied. 5643 5643 */ 5644 5644 function wp_unslash( $value ) {
Note: See TracChangeset
for help on using the changeset viewer.