SoapFault::SoapFault

(PHP 5 >= 5.0.1, PHP 7) SoapFault constructor SoapFault::SoapFault ( string $faultcode, string $faultstring [, string $faultactor [, string $detail [, string $faultname [, string $headerfault ]]]] ) This class is used to send SOAP fault responses from the PHP handler. faultcode, faultstring, faultactor and detail are standard elements of a SOAP Fault. Parameters: faultcode

px_delete_record

(PECL paradox >= 1.4.0) Deletes record from paradox database bool px_delete_record ( resource $pxdoc, int $num ) This function deletes a record from the database. It does not free the space in the database file but just marks it as deleted. Inserting a new record afterwards will reuse the space. Note: This function is only available if pxlib >= 0.6.0 is used. Parameters: px

mcrypt_module_self_test

(PHP 4 >= 4.0.2, PHP 5, PHP 7) This function runs a self test on the specified module bool mcrypt_module_self_test ( string $algorithm [, string $lib_dir ] ) This function runs the self test on the algorithm specified. Parameters: algorithm One of the MCRYPT_ciphername constants, or the name of the algorithm as string. lib_dir The opti

trader_add

(PECL trader >= 0.2.0) Vector Arithmetic Add array trader_add ( array $real0, array $real1 ) Calculates the vector addition of real0 to real1 and returns the resulting vector. Parameters: real0 Array of real values. real1 Array of real values. Returns: Returns an array with calculated data or false on failure

DOMProcessingInstruction::__construct

(PHP 5, PHP 7) Creates a new DOMProcessingInstruction object public DOMProcessingInstruction::__construct ( string $name [, string $value ] ) Creates a new DOMProcessingInstruction object. This object is read only. It may be appended to a document, but additional nodes may not be appended to this node until the node is associated with a document. To create a writeable node, use DOMDocument::createProcessingInstruction.

mcrypt_module_is_block_algorithm

(PHP 4 >= 4.0.2, PHP 5, PHP 7) This function checks whether the specified algorithm is a block algorithm bool mcrypt_module_is_block_algorithm ( string $algorithm [, string $lib_dir ] ) This function returns TRUE if the specified algorithm is a block algorithm, or FALSE if it is a stream one. Parameters: algorithm The algorithm to check. lib_dir

XMLReader::moveToAttributeNo

(PHP 5 >= 5.1.0, PHP 7) Move cursor to an attribute by index public bool XMLReader::moveToAttributeNo ( int $index ) Positions cursor on attribute based on its position. Parameters: index The position of the attribute. Returns: Returns TRUE on success or FALSE on failure. See al

SWFButton::setAction

(PHP 5 <= 5.3.0, PECL ming SVN) Sets the action void SWFButton::setAction ( SWFAction $action ) Sets the action to be performed when the button is clicked. This is a shortcut for SWFButton::addAction() called with the SWFBUTTON_MOUSEUP flag. Parameters: action An SWFAction, returned by SWFAction::__construct(). Returns: No value is returned

get_required_files

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

ReflectionExtension::getDependencies

(PHP 5, PHP 7) Gets dependencies public array ReflectionExtension::getDependencies ( void ) Gets dependencies, by listing both required and conflicting dependencies. Returns: An associative array with dependencies as keys and either Required, Optional or Conflicts as the values. Examples: ReflectionExtension::getDependencies() example