Changeset 61102
- Timestamp:
- 10/31/2025 05:27:26 AM (6 weeks ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wpdb.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wpdb.php
r60622 r61102 827 827 * @since 3.5.0 828 828 * 829 * @param string $name The private member to unset829 * @param string $name The private member to unset. 830 830 */ 831 831 public function __unset( $name ) { … … 2660 2660 * @see wp_set_wpdb_vars() 2661 2661 * 2662 * @param string $tableTable name.2663 * @param array $dataData to update (in column => value pairs).2662 * @param string $table Table name. 2663 * @param array $data Data to update (in column => value pairs). 2664 2664 * Both $data columns and $data values should be "raw" (neither should be SQL escaped). 2665 2665 * Sending a null value will cause the column to be set to NULL - the corresponding 2666 2666 * format is ignored in this case. 2667 * @param array $whereA named array of WHERE clauses (in column => value pairs).2667 * @param array $where A named array of WHERE clauses (in column => value pairs). 2668 2668 * Multiple clauses will be joined with ANDs. 2669 2669 * Both $where columns and $where values should be "raw". … … 2911 2911 * @since 4.2.0 2912 2912 * 2913 * @param array $data {2913 * @param array $data { 2914 2914 * Array of values and formats keyed by their field names, 2915 2915 * as it comes from the wpdb::process_field_formats() method. … … 2962 2962 * @since 4.2.1 2963 2963 * 2964 * @param array $data {2964 * @param array $data { 2965 2965 * Array of values, formats, and charsets keyed by their field names, 2966 2966 * as it comes from the wpdb::process_field_charsets() method.
Note: See TracChangeset
for help on using the changeset viewer.