XMLWriter::writeElementNS

(PHP 5 >= 5.1.2, PHP 7, PECL xmlwriter >= 0.1.0) Write full namespaced element tag bool XMLWriter::writeElementNS ( string $prefix, string $name, string $uri [, string $content ] ) Object oriented style Procedural style bool xmlwriter_write_element_ns ( resource $xmlwriter , string $prefix , string $name , string $uri [, string $content ] ) Writes a full namespaced element tag. Parameters:

Event::setPriority

(PECL event >= 1.2.6-beta) Set event priority public bool Event::setPriority ( int $priority ) Set event priority. Parameters: priority The event priority. Returns: Returns TRUE on success. Otherwise FALSE.

odbc_num_fields

(PHP 4, PHP 5, PHP 7) Number of columns in a result int odbc_num_fields ( resource $result_id ) Gets the number of fields (columns) in an ODBC result. Parameters: result_id The result identifier returned by odbc_exec(). Returns: Returns the number of fields, or -1 on error.

SoapParam::SoapParam

(PHP 5 >= 5.0.1, PHP 7) SoapParam constructor SoapParam::SoapParam ( mixed $data, string $name ) Constructs a new SoapParam object. Parameters: data The data to pass or return. This parameter can be passed directly as PHP value, but in this case it will be named as paramN and the SOAP service may not understand it. name The parameter

MongoBinData::__construct

(PECL mongo >= 0.8.1) Creates a new binary data object. public MongoBinData::__construct ( string $data [, int $type = 0 ] ) Creates a new binary data object. There are seven types of binary data currently recognized by the BSON spec, which are defined as class constants. For backwards compatibility, the PHP driver uses MongoBinData::BYTE_ARRAY as the default; however, this may change to MongoBinData::GENERIC in the fu

QuickHashStringIntHash::exists

(No version information available, might only be in Git) This method checks whether a key is part of the hash public bool QuickHashStringIntHash::exists ( string $key ) This method checks whether an entry with the provided key exists in the hash. Parameters: key The key of the entry to check for whether it exists in the hash. Returns: Returns TRU

tcpwrap_check

(PECL tcpwrap >= 0.1.0) Performs a tcpwrap check bool tcpwrap_check ( string $daemon, string $address [, string $user [, bool $nodns = false ]] ) This function consults the /etc/hosts.allow and /etc/hosts.deny files to check if access to service daemon should be granted or denied for a client. Parameters: daemon The service name. address

SDO_DataObject::createDataObject

(^) Create a child SDO_DataObject SDO_DataObject SDO_DataObject::createDataObject ( mixed $identifier ) Create a child SDO_DataObject of the default type for the property identified. The data object is automatically inserted into the tree and a reference to it is returned. Parameters: identifier Identifies the property for the data object type to be created. Can be eith

m_setip

(PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0) Set the connection method to IP int m_setip ( resource $conn, string $host, int $port ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). host An MCVE_CONN resource returned by m_initengine(). port An MCVE_CONN resource returned b

Incrementing/Decrementing Operators

Examples: Here's a simple example script: <?php echo "<h3>Postincrement</h3>"; $a = 5; echo "Should be 5: " . $a++ . "<br />\n"; echo "Should be 6: " . $a . "<br />\n"; echo "<h3>Preincrement</h3>"; $a = 5; echo "Should be 6: " . ++$a . "<br />\n"; echo "Should be 6: " . $a . "<br />\n"; echo "<h3>Postdecrement</h3>"; $a = 5; echo "Should be 5: " . $a-- . "<br />\n"; echo "Should be 4: " . $a .