rtrim

(PHP 4, PHP 5, PHP 7) Strip whitespace (or other characters) from the end of a string string rtrim ( string $str [, string $character_mask ] ) This function returns a string with whitespace stripped from the end of str. Without the second parameter, rtrim() will strip these characters: " " (ASCII 32 (0x20)), an ordinary space. "\t" (ASCII 9 (0x09)), a tab. "\n" (ASCII 10 (0x0A)), a new line (line feed). "\r"

DateTime::__construct

(PHP 5 >= 5.2.0, PHP 7) Returns new DateTime object DateTime date_create ([ string $time = "now" [, DateTimeZone $timezone = NULL ]] ) Object oriented style public DateTime::__construct ([ string $time = "now" [, DateTimeZone $timezone = NULL ]] ) Procedural style Returns new DateTime object. Parameters: time A date/time string. Valid formats are explained in Date an

DOMCharacterData::insertData

(PHP 5, PHP 7) Insert a string at the specified 16-bit unit offset void DOMCharacterData::insertData ( int $offset, string $data ) Inserts string data at position offset. Parameters: offset The character offset at which to insert. data The string to insert. Returns: No value is returned.

debug_print_backtrace

(PHP 5, PHP 7) Prints a backtrace void debug_print_backtrace ([ int $options = 0 [, int $limit = 0 ]] ) debug_print_backtrace() prints a PHP backtrace. It prints the function calls, included/required files and eval()ed stuff. Parameters: options As of 5.3.6, this parameter is a bitmask for the following options: debug_print_backtrace() options DEBUG_BACKTRACE_IGNORE

imap_ping

(PHP 4, PHP 5, PHP 7) Check if the IMAP stream is still active bool imap_ping ( resource $imap_stream ) imap_ping() pings the stream to see if it's still active. It may discover new mail; this is the preferred method for a periodic "new mail check" as well as a "keep alive" for servers which have inactivity timeout. Parameters: imap_stream An IMAP stream returned by imap_o

newt_grid_add_components_to_form

(PECL newt >= 0.1) void newt_grid_add_components_to_form ( resource $grid, resource $form, bool $recurse ) Parameters: grid form recurse Returns: No value is returned. This function is currently not documented; only its argument list is available.

px_get_info

(PECL paradox >= 1.0.0) Return lots of information about a paradox file array px_get_info ( resource $pxdoc ) Parameters: pxdoc Resource identifier of the paradox database as returned by px_new(). Returns: Returns an associated array with lots of information about a paradox file. This array is likely to be extended in the future. fileversion

DOMNode::replaceChild

(PHP 5, PHP 7) Replaces a child public DOMNode DOMNode::replaceChild ( DOMNode $newnode, DOMNode $oldnode ) This function replaces the child oldnode with the passed new node. If the newnode is already a child it will not be added a second time. If the replacement succeeds the old node is returned. Parameters: newnode The new node. It must be a member of the target docum

msg_send

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Send a message to a message queue bool msg_send ( resource $queue, int $msgtype, mixed $message [, bool $serialize = true [, bool $blocking = true [, int &$errorcode ]]] ) msg_send() sends a message of type msgtype (which MUST be greater than 0) to the message queue specified by queue. Parameters: queue msg_send() sends a message of

ldap_get_attributes

(PHP 4, PHP 5, PHP 7) Get attributes from a search result entry array ldap_get_attributes ( resource $link_identifier, resource $result_entry_identifier ) Reads attributes and values from an entry in the search result. Having located a specific entry in the directory, you can find out what information is held for that entry by using this call. You would use this call for an application which "browses" directory entries and