mysqli_fetch

(PHP 5 < 5.4.0) Alias for mysqli_stmt_fetch() This function is an alias of mysqli_stmt_fetch(). This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0. See also: mysqli_stmt_fetch() -

ImagickDraw::line

(PECL imagick 2.0.0) Draws a line bool ImagickDraw::line ( float $sx, float $sy, float $ex, float $ey ) Draws a line on the image using the current stroke color, stroke opacity, and stroke width. Parameters: sx starting x coordinate sy starting y coordinate ex ending x coordinate

XMLReader::getAttributeNs

(PHP 5 >= 5.1.0, PHP 7) Get the value of an attribute by localname and URI public string XMLReader::getAttributeNs ( string $localName, string $namespaceURI ) Returns the value of an attribute by name and namespace URI or an empty string if attribute does not exist or not positioned on an element node. Parameters: localName The local name. namesp

NoRewindIterator::current

(PHP 5 >= 5.1.0, PHP 7) Get the current value public mixed NoRewindIterator::current ( void ) Gets the current value. Returns: The current value. This function is currently not documented; only its argument list is available. See also: NoRewindIterator::key() -

ReflectionClass::isInstance

(PHP 5, PHP 7) Checks class for instance public bool ReflectionClass::isInstance ( object $object ) Checks if an object is an instance of a class. Parameters: object The object being compared to. Returns: Returns TRUE on success or FALSE on failure. Examples: ReflectionClass::isInstan

chop

(PHP 4, PHP 5, PHP 7) Alias of rtrim() This function is an alias of: rtrim(). Notes: chop() is different than the Perl chop() function, which removes the last character in the string.

cairo_surface_status

(PECL cairo >= 0.1.0) Description int cairo_surface_status ( CairoSurface $surface ) The function description goes here. Parameters: surface Description... Returns: What is returned on success and failure This function is currently not documented; only its argument list is available.

IntlCalendar::getErrorCode

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Get last error code on the object public int IntlCalendar::getErrorCode ( void ) Object oriented style (method): Procedural style: int intlcal_get_error_code ( IntlCalendar $calendar ) Returns the numeric ICU error code for the last call on this object (including cloning) or the IntlCalendar given for the calendar parameter (in the procedural‒style version). This may indicate only a wa

svn_fs_check_path

(PECL svn >= 0.1.0) Determines what kind of item lives at path in a given repository fsroot int svn_fs_check_path ( resource $fsroot, string $path ) Determines what kind of item lives at path in a given repository fsroot This function is currently not documented; only its argument list is available.

array_intersect_assoc

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Computes the intersection of arrays with additional index check array array_intersect_assoc ( array $array1, array $array2 [, array $... ] ) array_intersect_assoc() returns an array containing all the values of array1 that are present in all the arguments. Note that the keys are used in the comparison unlike in array_intersect(). Parameters: array1