Yaf_Application::__construct

(Yaf >=1.0.0) Yaf_Application constructor public Yaf_Application::__construct ( mixed $config [, string $envrion ] ) Instance a Yaf_Application. Parameters: config A ini config file path, or a config array If is a ini config file, there should be a section named as the one defined by yaf.environ, which is "product" by default. Note: If you use a ini configuration

dba_exists

(PHP 4, PHP 5, PHP 7) Check whether key exists bool dba_exists ( string $key, resource $handle ) dba_exists() checks whether the specified key exists in the database. Parameters: key The key the check is performed for. handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns TRUE if

ctype_print

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Check for printable character(s) bool ctype_print ( string $text ) Checks if all of the characters in the provided string, text, are printable. Parameters: text The tested string. Returns: Returns TRUE if every character in text will actually create output (including blanks). Returns FALSE if text contains contro

SolrParams::add

(PECL solr >= 0.9.2) This is an alias for SolrParams::addParam final public SolrParams SolrParams::add ( string $name, string $value ) This is an alias for SolrParams::addParam Parameters: name The name of the parameter value The value of the parameter Returns: Returns a SolrParams instance on success

ReflectionProperty::isPublic

(PHP 5, PHP 7) Checks if property is public public bool ReflectionProperty::isPublic ( void ) Checks whether the property is public. Returns: TRUE if the property is public, FALSE otherwise. See also: ReflectionProperty::isProtected() - ReflectionProperty::isPrivate() -

enchant_dict_get_error

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Returns the last error of the current spelling-session string enchant_dict_get_error ( resource $dict ) Returns the last error of the current spelling-session Parameters: dict Dictinaray resource Returns: Returns the error message as string or FALSE if no error occurred.

fam_monitor_collection

(PHP 5 <= 5.0.5) Monitor a collection of files in a directory for changes resource fam_monitor_collection ( resource $fam, string $dirname, int $depth, string $mask ) Requests monitoring for a collection of files within a directory. A FAM event will be generated whenever the status of the files change. The possible event codes are described in detail in the constants part of this section. Parameters:

ibase_free_event_handler

(PHP 5, PHP 7) Cancels a registered event handler bool ibase_free_event_handler ( resource $event ) This function causes the registered event handler specified by event to be cancelled. The callback function will no longer be called for the events it was registered to handle. Parameters: event An event resource, created by ibase_set_event_handler(). Re

OCI-Lob::load

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns large object's contents string OCI-Lob::load ( void ) Returns large object's contents. As script execution is terminated when the memory_limit is reached, ensure that the LOB does not exceed this limit. In most cases it's recommended to use OCI-Lob::read instead. Returns: Returns the contents of the object, or FALSE on errors.

SolrDocument::offsetSet

(PECL solr >= 0.9.2) Adds a field to the document public void SolrDocument::offsetSet ( string $fieldName, string $fieldValue ) Used when the object is treated as an array to add a field to the document. Parameters: fieldName The name of the field. fieldValue The value for this field. Returns: Returns TRUE