Lines Matching refs:field
342 * @param mixed $field [optional] <p>
343 * The name or offset of the field being retrieved.
346 * It can be the field's offset, the field's name, or the field's table
347 * dot field name (tablename.fieldname). If the column name has been
349 * column name. If undefined, the first field is retrieved.
356 function mysql_result ($result, $row, $field = 0) {}
416 * If two or more columns of the result have the same field names,
434 * If two or more columns of the result have the same field names,
496 * @link https://php.net/manual/en/function.mysql-fetch-field.php
499 * The numerical field offset. If the field offset is not specified, the
500 * next field that was not yet retrieved by this function is retrieved.
503 * @return object an object containing field information. The properties
526 * Set result pointer to a specified field offset
527 * @link https://php.net/manual/en/function.mysql-field-seek.php
553 * Get the name of the specified field in a result
554 * @link https://php.net/manual/en/function.mysql-field-name.php
557 * @return string|false The name of the specified field index on success or false on failure.
564 * Get name of the table the specified field is in
565 * @link https://php.net/manual/en/function.mysql-field-table.php
575 * Returns the length of the specified field
576 * @link https://php.net/manual/en/function.mysql-field-len.php
579 * @return int|false The length of the specified field index on success or false on failure.
586 * Get the type of the specified field in a result
587 * @link https://php.net/manual/en/function.mysql-field-type.php
590 * @return string The returned field type
601 * Get the flags associated with the specified field in a result
602 * @link https://php.net/manual/en/function.mysql-field-flags.php
872 * @param mixed $field [optional] <p>
873 * The field name.
881 function mysql_db_name ($result, $row, $field = null) {}
886 * @param $field [optional]
890 function mysql_dbname ($result, $row, $field) {}
893 * Get table name of field
916 * @param $field [optional]
920 function mysql_table_name ($result, $row, $field) {}
934 * fields. This index starts with 0, the first field in the result.