Changeset 48590 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 07/23/2020 09:09:04 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r48507 r48590 2223 2223 * If omitted, all values in $data will be treated as strings unless otherwise 2224 2224 * specified in wpdb::$field_types. 2225 * @param string $typeOptional. Type of operation. Possible values include 'INSERT' or 'REPLACE'.2225 * @param string $type Optional. Type of operation. Possible values include 'INSERT' or 'REPLACE'. 2226 2226 * Default 'INSERT'. 2227 2227 * @return int|false The number of rows affected, or false on error. … … 2662 2662 * of each row's first column's value. Duplicate keys are discarded. 2663 2663 * @return array|object|null Database query results. 2664 *2665 2664 */ 2666 2665 public function get_results( $query = null, $output = OBJECT ) { … … 3396 3395 * @since 0.71 3397 3396 * 3398 * @param string $info_type Optional. Possible values include 'name', 'table', 'def', 'max_length',3399 * 'not_null', 'primary_key', 'multiple_key', 'unique_key', 'numeric',3400 * 'blob', 'type', 'unsigned', 'zerofill'. Default 'name'.3401 * @param int $col_offsetOptional. 0: col name. 1: which table the col's in. 2: col's max length.3402 * 3: if the col is numeric. 4: col's type. Default -1.3397 * @param string $info_type Optional. Possible values include 'name', 'table', 'def', 'max_length', 3398 * 'not_null', 'primary_key', 'multiple_key', 'unique_key', 'numeric', 3399 * 'blob', 'type', 'unsigned', 'zerofill'. Default 'name'. 3400 * @param int $col_offset Optional. 0: col name. 1: which table the col's in. 2: col's max length. 3401 * 3: if the col is numeric. 4: col's type. Default -1. 3403 3402 * @return mixed Column results. 3404 3403 */
Note: See TracChangeset
for help on using the changeset viewer.