GearmanTask::functionName

(PECL gearman >= 0.6.0) Get associated function name public string GearmanTask::functionName ( void ) Returns the name of the function this task is associated with, i.e., the function the Gearman worker calls. Returns: A function name.

pg_fetch_object

(PHP 4, PHP 5, PHP 7) Fetch a row as an object object pg_fetch_object ( resource $result [, int $row [, int $result_type = PGSQL_ASSOC ]] ) object pg_fetch_object ( resource $result [, int $row [, string $class_name [, array $params ]]] ) pg_fetch_object() returns an object with properties that correspond to the fetched row's field names. It can optionally instantiate an object of a specific class, and pass parameters to t

pg_field_type_oid

(PHP 5 >= 5.1.0, PHP 7) Returns the type ID (OID) for the corresponding field number int pg_field_type_oid ( resource $result, int $field_number ) pg_field_type_oid() returns an integer containing the OID of the base type of the given field_number in the given PostgreSQL result resource. You can get more information about the field type by querying PostgreSQL's pg_type system table using the OID obtained with this fun

debug_backtrace

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Generates a backtrace array debug_backtrace ([ int $options = DEBUG_BACKTRACE_PROVIDE_OBJECT [, int $limit = 0 ]] ) debug_backtrace() generates a PHP backtrace. Parameters: options As of 5.3.6, this parameter is a bitmask for the following options: debug_backtrace() options DEBUG_BACKTRACE_PROVIDE_OBJECT Whether or not to populate the

PDF_makespotcolor

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Make spot color int PDF_makespotcolor ( resource $p, string $spotname ) Finds a built-in spot color name, or makes a named spot color from the current fill color. Returns TRUE on success or FALSE on failure.

enchant_dict_suggest

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Will return a list of values if any of those pre-conditions are not met array enchant_dict_suggest ( resource $dict, string $word ) Parameters: dict Dictionary resource word Word to use for the suggestions. Returns: Will returns an array of suggestions if the

SphinxClient::setGroupDistinct

(PECL sphinx >= 0.1.0) Set attribute name for per-group distinct values count calculations public bool SphinxClient::setGroupDistinct ( string $attribute ) Sets attribute name for per-group distinct values count calculations. Only available for grouping queries. For each group, all values of attribute will be stored, then the amount of distinct values will be calculated and returned to the client. This feature is similar

ImagickDraw::scale

(PECL imagick 2.0.0) Adjusts the scaling factor bool ImagickDraw::scale ( float $x, float $y ) Adjusts the scaling factor to apply in the horizontal and vertical directions to the current coordinate space. Parameters: x horizontal factor y vertical factor Returns: No value is returned.

chdb_create

(PECL chdb >= 0.1.0) Creates a chdb file bool chdb_create ( string $pathname, array $data ) chdb_create() creates a chdb file containing the specified key-value pairs. Note: chdb files are not portable across little-endian and big-endian environments. Except for that, they are portable across different architectures. Also compatibility across different versions of chdb is not guaranteed. Parameters:

SplHeap::insert

(PHP 5 >= 5.3.0, PHP 7) Inserts an element in the heap by sifting it up. public void SplHeap::insert ( mixed $value ) Insert value in the heap. Parameters: value The value to insert. Returns: No value is returned.