ImagickDraw::setStrokeAntialias

(PECL imagick 2.0.0) Controls whether stroked outlines are antialiased bool ImagickDraw::setStrokeAntialias ( bool $stroke_antialias ) Controls whether stroked outlines are antialiased. Stroked outlines are antialiased by default. When antialiasing is disabled stroked pixels are thresholded to determine if the stroke color or underlying canvas color should be used. Parameters: stroke_

iconv_mime_encode

(PHP 5, PHP 7) Composes a MIME header field string iconv_mime_encode ( string $field_name, string $field_value [, array $preferences = NULL ] ) Composes and returns a string that represents a valid MIME header field, which looks like the following: Subject: =?ISO-8859-1?Q?Pr=FCfung_f=FCr?= Entwerfen von einer MIME kopfzeile Parameters: field_name The field name.

SphinxClient::setSelect

(PECL sphinx >= 1.0.1) Set select clause public bool SphinxClient::setSelect ( string $clause ) Sets the select clause, listing specific attributes to fetch, and expressions to compute and fetch. Parameters: clause SQL-like clause. Returns: Returns TRUE on success or FALSE on failure. Changelog:

DOMNode::lookupNamespaceURI

(PHP 5, PHP 7) Gets the namespace URI of the node based on the prefix public string DOMNode::lookupNamespaceURI ( string $prefix ) Gets the namespace URI of the node based on the prefix. Parameters: prefix The prefix of the namespace. Returns: The namespace URI of the node. See a

quoted_printable_encode

(PHP 5 >= 5.3.0, PHP 7) Convert a 8 bit string to a quoted-printable string string quoted_printable_encode ( string $str ) Returns a quoted printable string created according to » RFC2045, section 6.7. This function is similar to imap_8bit(), except this one does not require the IMAP module to work. Parameters: str The input string. Returns:

token_name

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Get the symbolic name of a given PHP token string token_name ( int $token ) token_name() gets the symbolic name for a PHP token value. Parameters: token The token value. Returns: The symbolic name of the given token. Examples: token_name() example

gmp_powm

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Raise number into power with modulo GMP gmp_powm ( GMP $base, GMP $exp, GMP $mod ) Calculate (base raised into power exp) modulo mod. If exp is negative, result is undefined. Parameters: base The base number. Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is po

msql_field_table

(PHP 4, PHP 5, PHP 7) Get table name for field int msql_field_table ( resource $result, int $field_offset ) Returns the name of the table that the specified field is in. Parameters: result The result resource that is being evaluated. This result comes from a call to msql_query(). field_offset The numerical field offset. The field_offset st

IntlChar::toupper

(PHP 7) Make Unicode character uppercase public static mixed IntlChar::toupper ( mixed $codepoint ) The given character is mapped to its uppercase equivalent. If the character has no uppercase equivalent, the character itself is returned. Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u

mysqli_stmt::data_seek

(PHP 5, PHP 7) Seeks to an arbitrary row in statement result set void mysqli_stmt::data_seek ( int $offset ) Object oriented style Procedural style void mysqli_stmt_data_seek ( mysqli_stmt $stmt , int $offset ) Seeks to an arbitrary result pointer in the statement result set. mysqli_stmt_store_result() must be called prior to mysqli_stmt_data_seek(). Parameters: stmt P