IntlCalendar::before

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Whether this objectʼs time is before that of the passed object public bool IntlCalendar::before ( IntlCalendar $other ) Object oriented style Procedural style bool intlcal_before ( IntlCalendar $cal , IntlCalendar $other ) Returns whether this objectʼs time precedes the argumentʼs time. Parameters: cal The IntlCalendar resource.

svn_auth_set_parameter

(PECL svn >= 0.1.0) Sets an authentication parameter void svn_auth_set_parameter ( string $key, string $value ) Sets authentication parameter at key to value. For a list of valid keys and their meanings, consult the authentication constants list. Parameters: key String key name. Use the authentication constants defined by this extension to specify a key.

PDF_load_iccprofile

(PECL pdflib >= 2.0.0) Search and prepare ICC profile int PDF_load_iccprofile ( resource $pdfdoc, string $profilename, string $optlist ) Searches for an ICC profile, and prepares it for later use.

sizeof

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

parsekit_func_arginfo

(PECL parsekit >= 0.3.0) Return information regarding function argument(s) array parsekit_func_arginfo ( mixed $function ) Parameters: function A string describing a function, or an array describing a class/method. Returns: Returns an array containing argument information. This function is EXPERIMENTAL. The b

Collator::create

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Create a collator public static Collator Collator::create ( string $locale ) Object oriented style Procedural style Collator collator_create ( string $locale ) The strings will be compared using the options already specified. Parameters: locale The locale containing the required collation rules. Special values for local

Objects

Examples: To create a new object, use the new statement to instantiate a class: <?php class foo {     function do_foo()     {         echo "Doing foo.";      } } $bar = new foo; $bar->do_foo(); ?> If an object is converted to an object, it is not modified. If a value of any other type is converted to an object, a new instance of the stdClass built-in class is created. If the value was NULL, the new instance will be empty. An ar

exif_tagname

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Get the header name for an index string exif_tagname ( int $index ) Parameters: index The Tag ID for which a Tag Name will be looked up. Returns: Returns the header name, or FALSE if index is not a defined EXIF tag id. Examples: exif_tagname() example

ImagickDraw::setTextEncoding

(PECL imagick 2.0.0) Specifies the text code set bool ImagickDraw::setTextEncoding ( string $encoding ) Specifies the code set to use for text annotations. The only character encoding which may be specified at this time is "UTF-8" for representing Unicode as a sequence of bytes. Specify an empty string to set text encoding to the system's default. Successful text annotation using Unicode may require fonts designed to support

PDF_show_boxed

(PHP 4, PECL pdflib >= 1.0.0) Output text in a box [deprecated] int PDF_show_boxed ( resource $p, string $text, float $left, float $top, float $width, float $height, string $mode, string $feature ) This function is deprecated since PDFlib version 6, use PDF_fit_textline() for single lines, or the PDF_*_textflow() functions for multi-line formatting instead.