yaz_addinfo

(PHP 4 >= 4.0.1, PECL yaz >= 0.9.0) Returns additional error information string yaz_addinfo ( resource $id ) Returns additional error information for the last request on the server. With some servers, this function may return the same string as yaz_error(). Parameters: id The connection resource returned by yaz_connect(). Returns: A strin

SolrDocument::getField

(PECL solr >= 0.9.2) Retrieves a field by name public SolrDocumentField SolrDocument::getField ( string $fieldName ) Retrieves a field by name. Parameters: fieldName Name of the field. Returns: Returns a SolrDocumentField on success and FALSE on failure.

inotify_init

(PECL inotify >= 0.1.2) Initialize an inotify instance resource inotify_init ( void ) Initialize an inotify instance for use with inotify_add_watch() Returns: A stream resource or FALSE on error. Examples: Example usage of inotify <?php // Open an inotify instance $fd = inotify_init(); // Watch __FILE__ for metadat

HaruDoc::loadType1

(PECL haru >= 0.0.1) Load Type1 font string HaruDoc::loadType1 ( string $afmfile [, string $pfmfile ] ) Loads Type1 font from the given file and registers it in the PDF document. Parameters: afmfile Path to an AFM file. pfmfile Path to a PFA/PFB file, optional. If it's not set only the glyph data of the font is embedded into the PDF

ibase_close

(PHP 5, PHP 7) Close a connection to an InterBase database bool ibase_close ([ resource $connection_id = NULL ] ) Closes the link to an InterBase database that's associated with a connection id returned from ibase_connect(). Default transaction on link is committed, other transactions are rolled back. Parameters: connection_id An InterBase link identifier returned from i

OAuth::enableSSLChecks

(PECL OAuth >= 0.99.5) Turn on SSL checks public bool OAuth::enableSSLChecks ( void ) Turns on the usual SSL peer certificate and host checks (enabled by default). Alternatively, the sslChecks member can be set to a non-FALSE value to turn SSL checks off. Returns: TRUE Changelog: 0.99.8 The sslChecks member was added

SoapClient::__getTypes

(PHP 5 >= 5.0.1, PHP 7) Returns a list of SOAP types public array SoapClient::__getTypes ( void ) Returns an array of types described in the WSDL for the Web service. Note: This function only works in WSDL mode. Returns: The array of SOAP types, detailing all structures and types. Examples: SoapClient::__getTypes() example

SoapServer::SoapServer

(PHP 5 >= 5.0.1, PHP 7) SoapServer constructor public SoapServer::SoapServer ( mixed $wsdl [, array $options ] ) This constructor allows the creation of SoapServer objects in WSDL or non-WSDL mode. Parameters: wsdl To use the SoapServer in WSDL mode, pass the URI of a WSDL file. Otherwise, pass NULL and set the uri option to the target namespace for the server.

ocicolltrim

(PHP 4 >= 4.0.6, PHP 5, PHP 7, PECL OCI8 >= 1.0.0) Alias of OCI-Collection::trim() Alias of OCI-Collection::trim() This alias has been DEPRECATED as of PHP 5.4.0. Relying on this alias is highly discouraged.

openssl_pkey_new

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Generates a new private key resource openssl_pkey_new ([ array $configargs ] ) openssl_pkey_new() generates a new private and public key pair. The public component of the key can be obtained using openssl_pkey_get_public(). Note: You need to have a valid openssl.cnf installed for this function to operate correctly. See the notes under the installation section for more information.