SWFTextField::setLeftMargin

(PHP 5 <= 5.3.0, PECL ming SVN) Sets the left margin width of the text field void SWFTextField::setLeftMargin ( float $width ) swftextfield::setleftmargin() sets the left margin width of the text field to width. Default is 0. Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation

set_time_limit

(PHP 4, PHP 5, PHP 7) Limits the maximum execution time bool set_time_limit ( int $seconds ) Set the number of seconds a script is allowed to run. If this is reached, the script returns a fatal error. The default limit is 30 seconds or, if it exists, the max_execution_time value defined in the php.ini. When called, set_time_limit() restarts the timeout counter from zero. In other words, if the timeout is the default 30 sec

Imagick::functionImage

(No version information available, might only be in Git) Applies a function on the image public bool Imagick::functionImage ( int $function, array $arguments [, int $channel = Imagick::CHANNEL_DEFAULT ] ) Applies an arithmetic, relational, or logical expression to a pseudo image. See also » ImageMagick v6 Examples - Image Transformations — Function, Multi-Argument Evaluate This method is available if Imagick has been co

IntlChar::isalpha

(PHP 7) Check if code point is a letter character public static bool IntlChar::isalpha ( mixed $codepoint ) Determines whether the specified code point is a letter character. TRUE for general categories "L" (letters). 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{2603}")

imagepsslantfont

(PHP 4, PHP 5) Slant a font bool imagepsslantfont ( resource $font_index, float $slant ) Slant a given font. Parameters: font_index A font resource, returned by imagepsloadfont(). slant Slant level. Returns: Returns TRUE on success or FALSE on failure. Changelog:

HaruDoc::setCurrentEncoder

(PECL haru >= 0.0.1) Set the current encoder for the document bool HaruDoc::setCurrentEncoder ( string $encoding ) Defines the encoder currently used in the document. Parameters: encoding The name of the encoding to use. See Builtin Encodings for the list of allowed values. Returns: Returns TRUE on success. Exception:

PDOStatement::execute

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Executes a prepared statement public bool PDOStatement::execute ([ array $input_parameters ] ) Execute the prepared statement. If the prepared statement included parameter markers, you must either: call PDOStatement::bindParam() to bind PHP variables to the parameter markers: bound variables pass their value as input and receive the output value, if any, of their associated

mcrypt_module_get_algo_block_size

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Returns the blocksize of the specified algorithm int mcrypt_module_get_algo_block_size ( string $algorithm [, string $lib_dir ] ) Gets the blocksize of the specified algorithm. Parameters: algorithm The algorithm name. lib_dir This optional parameter can contain the location where the mode module is on

apache_lookup_uri

(PHP 4, PHP 5, PHP 7) Perform a partial request for the specified URI and return all info about it object apache_lookup_uri ( string $filename ) This performs a partial request for a URI. It goes just far enough to obtain all the important information about the given resource. This function is supported when PHP is installed as an Apache module or by the NSAPI server module in Netscape/iPlanet/SunONE webservers.

array_change_key_case

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Changes the case of all keys in an array array array_change_key_case ( array $array [, int $case = CASE_LOWER ] ) Returns an array with all keys from array lowercased or uppercased. Numbered indices are left as is. Parameters: array The array to work on case Either CASE_UPPER or CASE_LOWER (default)