DirectoryIterator::valid

(PHP 5, PHP 7) Check whether current DirectoryIterator position is a valid file public bool DirectoryIterator::valid ( void ) Check whether current DirectoryIterator position is a valid file. Returns: Returns TRUE if the position is valid, otherwise FALSE Examples: A DirectoryIterator::valid() example <?php $iterator =

sqlite_udf_decode_binary

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Decode binary data passed as parameters to an UDF string sqlite_udf_decode_binary ( string $data ) Decodes binary data passed as parameters to a UDF. You must call this function on parameters passed to your UDF if you need them to handle binary data, as the binary encoding employed by PHP will obscure the content and of the parameter in its natural, non-coded form. PHP does not

php_user_filter::filter

(PHP 5, PHP 7) Called when applying the filter public int php_user_filter::filter ( resource $in, resource $out, int &$consumed, bool $closing ) This method is called whenever data is read from or written to the attached stream (such as with fread() or fwrite()). Parameters: in in is a resource pointing to a bucket brigade which contains one or more bucket objects con

SolrDisMaxQuery::useEDisMaxQueryParser

(No version information available, might only be in Git) Switch QueryParser to be EDisMax public SolrDisMaxQuery SolrDisMaxQuery::useEDisMaxQueryParser ( void ) Switch QueryParser to be EDisMax. By default the query builder uses edismax, if it was switched using SolrDisMaxQuery::useDisMaxQueryParser(), it can be switched back using this method. Returns: SolrDisMaxQuery

SDO_Model_Type::isAbstractType

(^) Test to see if this SDO_Model_Type is an abstract data type bool SDO_Model_Type::isAbstractType ( void ) Test to see if this SDO_Model_Type is an abstract data type. Returns TRUE if this type is abstract, that is, no SDO_DataObject of this type can be instantiated, though other types may inherit from it. Returns: Returns TRUE if this type is an abstract data type, otherwise returns FALSE.

strchr

(PHP 4, PHP 5, PHP 7) Alias of strstr() This function is an alias of: strstr().

IntlDateFormatter::setPattern

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Set the pattern used for the IntlDateFormatter public bool IntlDateFormatter::setPattern ( string $pattern ) Object oriented style Procedural style bool datefmt_set_pattern ( IntlDateFormatter $fmt , string $pattern ) Set the pattern used for the IntlDateFormatter. Parameters: fmt The formatter resource.

Memcache::set

(PECL memcache >= 0.2.0) Store data at the server bool Memcache::set ( string $key, mixed $var [, int $flag [, int $expire ]] ) Memcache::set() stores an item var with key on the memcached server. Parameter expire is expiration time in seconds. If it's 0, the item never expires (but memcached server doesn't guarantee this item to be stored all the time, it could be deleted from the cache to make place for other items). Yo

EventListener::setCallback

(PECL event >= 1.2.6-beta) The setCallback purpose public void EventListener::setCallback ( callable $cb [, mixed $arg = NULL ] ) Adjust event connect listener's callback and optionally the callback argument. Parameters: cb The new callback for new connections. Ignored if NULL. Should match the following prototype: void callback ([ EventListener $listener = NU

MongoGridFSCursor::__construct

(PECL mongo >=0.9.0) Create a new cursor public MongoGridFSCursor::__construct ( MongoGridFS $gridfs, resource $connection, string $ns, array $query, array $fields ) Parameters: gridfs Related GridFS collection. connection Database connection. ns Full name of database and collection.