ftp_alloc

(PHP 5, PHP 7) Allocates space for a file to be uploaded bool ftp_alloc ( resource $ftp_stream, int $filesize [, string &$result ] ) Sends an ALLO command to the remote FTP server to allocate space for a file to be uploaded. Note: Many FTP servers do not support this command. These servers may return a failure code (FALSE) indicating the command is not supported or a success code (TRUE) to indicate that pre-allocatio

end

(PHP 4, PHP 5, PHP 7) Set the internal pointer of an array to its last element mixed end ( array &$array ) end() advances array's internal pointer to the last element, and returns its value. Parameters: array The array. This array is passed by reference because it is modified by the function. This means you must pass it a real variable and not a function returning an

SessionHandler::destroy

(PHP 5 >= 5.4.0, PHP 7) Destroy a session public bool SessionHandler::destroy ( string $session_id ) Destroys a session. Called internally by PHP with session_regenerate_id() (assuming the $destroy is set to TRUE, by session_destroy() or when session_decode() fails. This method wraps the internal PHP save handler defined in the session.save_handler ini setting that was set before this handler was set by session_set_save

SWFText::setHeight

(PHP 5 <= 5.3.0, PECL ming SVN) Sets the current font height void SWFText::setHeight ( float $height ) swftext::setheight() sets the current font height to height. Default is 240. Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release

range

(PHP 4, PHP 5, PHP 7) Create an array containing a range of elements array range ( mixed $start, mixed $end [, number $step = 1 ] ) Create an array containing a range of elements. Parameters: start First value of the sequence. end The sequence is ended upon reaching the end value. step If a step valu

imagesetthickness

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Set the thickness for line drawing bool imagesetthickness ( resource $image, int $thickness ) imagesetthickness() sets the thickness of the lines drawn when drawing rectangles, polygons, ellipses etc. etc. to thickness pixels. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor

timezone_identifiers_list

(PHP 5 >= 5.2.0, PHP 7) Alias of DateTimeZone::listIdentifiers() This function is an alias of: DateTimeZone::listIdentifiers()

OCI-Lob::writeTemporary

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Writes a temporary large object bool OCI-Lob::writeTemporary ( string $data [, int $lob_type = OCI_TEMP_CLOB ] ) Creates a temporary large object and writes data to it. You should use OCI-Lob::close when you are done with this object. Parameters: data The data to write. lob_type Can be one of the

str_repeat

(PHP 4, PHP 5, PHP 7) Repeat a string string str_repeat ( string $input, int $multiplier ) Returns input repeated multiplier times. Parameters: input The string to be repeated. multiplier Number of time the input string should be repeated. multiplier has to be greater than or equal to 0. If the multiplier is set to 0, the function wil

ming_setscale

(PHP 4 >= 4.0.5, PHP 5, PHP 7, PECL ming SVN) Set the global scaling factor. void ming_setscale ( float $scale ) Sets the scale of the output SWF. Inside the SWF file, coordinates are measured in TWIPS, rather than PIXELS. There are 20 TWIPS in 1 pixel. Parameters: scale The scale to be set. Returns: No value is returned.