Gmagick::setimagetype

(PECL gmagick >= Unknown) Sets the image type public Gmagick Gmagick::setimagetype ( int $imgType ) Sets the image type. Parameters: imgType The image type: UndefinedType, BilevelType, GrayscaleType, GrayscaleMatteType, PaletteType, PaletteMatteType, TrueColorType, TrueColorMatteType, ColorSeparationType, ColorSeparationMatteType, or OptimizeType. R

str_pad

(PHP 4 >= 4.0.1, PHP 5, PHP 7) Pad a string to a certain length with another string string str_pad ( string $input, int $pad_length [, string $pad_string = " " [, int $pad_type = STR_PAD_RIGHT ]] ) This functions returns the input string padded on the left, the right, or both sides to the specified padding length. If the optional argument pad_string is not supplied, the input is padded with spaces, otherwise it is padde

Threaded::count

(PECL pthreads >= 2.0.0) Manipulation public integer Threaded::count ( void ) Returns the number of properties for this object Returns: Examples: Counting the properties of an object <?php $safe = new Threaded(); while (count($safe) < 10) {     $safe[] = count($safe); } var_dump(count($safe)); ?> The above

odbc_setoption

(PHP 4, PHP 5, PHP 7) Adjust ODBC settings bool odbc_setoption ( resource $id, int $function, int $option, int $param ) This function allows fiddling with the ODBC options for a particular connection or query result. It was written to help find work around to problems in quirky ODBC drivers. You should probably only use this function if you are an ODBC programmer and understand the effects the various options will have. You

ImagickDraw::pathLineToHorizontalRelative

(PECL imagick 2.0.0) Draws a horizontal line bool ImagickDraw::pathLineToHorizontalRelative ( float $x ) Draws a horizontal line path from the current point to the target point using relative coordinates. The target point then becomes the new current point. Parameters: x x coordinate Returns: No value is returned.

strrpos

(PHP 4, PHP 5, PHP 7) Find the position of the last occurrence of a substring in a string int strrpos ( string $haystack, string $needle [, int $offset = 0 ] ) Find the numeric position of the last occurrence of needle in the haystack string. Parameters: haystack The string to search in. needle If needle is not a string, it is converte

IntlChar::isIDPart

(PHP 7) Check if code point is permissible in an identifier public static bool IntlChar::isIDPart ( mixed $codepoint ) Determines if the specified character is permissible in an identifier. TRUE for characters with general categories "L" (letters), "Nl" (letter numbers), "Nd" (decimal digits), "Mc" and "Mn" (combining marks), "Pc" (connecting punctuation), and u_isIDIgnorable(c). Note: This is almost the same as Unicod

ftp_mdtm

(PHP 4, PHP 5, PHP 7) Returns the last modified time of the given file int ftp_mdtm ( resource $ftp_stream, string $remote_file ) ftp_mdtm() gets the last modified time for a remote file. Note: Not all servers support this feature! Note: ftp_mdtm() does not work with directories. Parameters: ftp_stream The link identifier of the FTP connection.

ImagickDraw::setViewbox

(PECL imagick 2.0.0) Sets the overall canvas size bool ImagickDraw::setViewbox ( int $x1, int $y1, int $x2, int $y2 ) Sets the overall canvas size to be recorded with the drawing vector data. Usually this will be specified using the same size as the canvas image. When the vector data is saved to SVG or MVG formats, the viewbox is use to specify the size of the canvas image that a viewer will render the vector data on.

geoip_id_by_name

(PECL geoip >= 0.2.0) Get the Internet connection type int geoip_id_by_name ( string $hostname ) The geoip_id_by_name() function will return the Internet connection type corresponding to a hostname or an IP address. The return value is numeric and can be compared to the following constants: GEOIP_UNKNOWN_SPEED GEOIP_DIALUP_SPEED GEOIP_CABLEDSL_SPEED GEOIP_CORPORATE_SPEED Parameters: