hebrevc

(PHP 4, PHP 5, PHP 7) Convert logical Hebrew text to visual text with newline conversion string hebrevc ( string $hebrew_text [, int $max_chars_per_line = 0 ] ) This function is similar to hebrev() with the difference that it converts newlines (\n) to "<br>\n". The function tries to avoid breaking words. Parameters: hebrew_text A Hebrew input string.

hebrev

(PHP 4, PHP 5, PHP 7) Convert logical Hebrew text to visual text string hebrev ( string $hebrew_text [, int $max_chars_per_line = 0 ] ) Converts logical Hebrew text to visual text. The function tries to avoid breaking words. Parameters: hebrew_text A Hebrew input string. max_chars_per_line This optional parameter indicates maximum nu

get_html_translation_table

(PHP 4, PHP 5, PHP 7) Returns the translation table used by htmlspecialchars() and htmlentities() array get_html_translation_table ([ int $table = HTML_SPECIALCHARS [, int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = "UTF-8" ]]] ) get_html_translation_table() will return the translation table that is used internally for htmlspecialchars() and htmlentities(). Note: Special characters can be encoded in severa

fprintf

(PHP 5, PHP 7) Write a formatted string to a stream int fprintf ( resource $handle, string $format [, mixed $args [, mixed $... ]] ) Write a string produced according to format to the stream resource specified by handle. Parameters: handle A file system pointer resource that is typically created using fopen(). format See sprintf() for a d

explode

(PHP 4, PHP 5, PHP 7) Split a string by string array explode ( string $delimiter, string $string [, int $limit = PHP_INT_MAX ] ) Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string delimiter. Parameters: delimiter The boundary string. string The input string.

echo

(PHP 4, PHP 5, PHP 7) Output one or more strings void echo ( string $arg1 [, string $... ] ) Outputs all parameters. No additional newline is appended. echo is not actually a function (it is a language construct), so you are not required to use parentheses with it. echo (unlike some other language constructs) does not behave like a function, so it cannot always be used in the context of a function. Additionally, if you wa

crypt

(PHP 4, PHP 5, PHP 7) One-way string hashing string crypt ( string $str [, string $salt ] ) crypt() will return a hashed string using the standard Unix DES-based algorithm or alternative algorithms that may be available on the system. The salt parameter is optional. However, crypt() creates a weak password without the salt. PHP 5.6 or later raise an E_NOTICE error without it. Make sure to specify a strong enough salt for b

crc32

(PHP 4 >= 4.0.1, PHP 5, PHP 7) Calculates the crc32 polynomial of a string int crc32 ( string $str ) Generates the cyclic redundancy checksum polynomial of 32-bit lengths of the str. This is usually used to validate the integrity of data being transmitted. Parameters: str The data. Returns: Returns the crc32 checksum of str as an integer.

count_chars

(PHP 4, PHP 5, PHP 7) Return information about characters used in a string mixed count_chars ( string $string [, int $mode = 0 ] ) Counts the number of occurrences of every byte-value (0..255) in string and returns it in various ways. Parameters: string The examined string. mode See return values. Returns: Dep

convert_uuencode

(PHP 5, PHP 7) Uuencode a string string convert_uuencode ( string $data ) convert_uuencode() encodes a string using the uuencode algorithm. Uuencode translates all strings (including binary's ones) into printable characters, making them safe for network transmissions. Uuencoded data is about 35% larger than the original. Parameters: data The data to be encoded.