• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/35

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

35 Cards in this Set

  • Front
  • Back
Quote string with slashes in a C style
addcslashes ( string $str , string $charlist )
Quote string with slashes
addslashes ( string $str )
Convert binary data into hexadecimal representation
bin2hex ( string $str )
Alias of rtrim()
chop()
Return a specific character
chr ( int $ascii )
Split a string into smaller chunks
chunk_split ( string $body [, int $chunklen [, string $end ]] )
Convert from one Cyrillic character set to another
convert_cyr_string ( string $str , string $from , string $to )
Decode a uuencoded string
convert_uudecode ( string $data )
Uuencode a string
convert_uuencode ( string $data )
Return information about characters used in a string
count_chars ( string $string [, int $mode ] )
Calculates the crc32 polynomial of a string
crc32 ( string $str )
One-way string encryption (hashing)
crypt ( string $str [, string $salt ] )
Output one or more strings
echo ( string $arg1 [, string $... ] )
Split a string by string
explode ( string $delimiter , string $string [, int $limit ] )
Write a formatted string to a stream
fprintf ( resource $handle , string $format [, mixed $args [, mixed $... ]] )
Returns the translation table used by htmlspecialchars() and htmlentities()
get_html_translation_table ([ int $table [, int $quote_style ]] )
Convert logical Hebrew text to visual text
hebrev ( string $hebrew_text [, int $max_chars_per_line ] )
Convert logical Hebrew text to visual text with newline conversion
hebrevc ( string $hebrew_text [, int $max_chars_per_line ] )
Convert all HTML entities to their applicable characters
html_entity_decode ( string $string [, int $quote_style [, string $charset ]] )
Convert all applicable characters to HTML entities
htmlentities ( string $string [, int $quote_style [, string $charset [, bool $double_encode ]]] )
Convert special HTML entities back to characters
htmlspecialchars_decode ( string $string [, int $quote_style ] )
Convert special characters to HTML entities
htmlspecialchars ( string $string [, int $quote_style [, string $charset [, bool $double_encode ]]] )
Join array elements with a string
implode ( string $glue , array $pieces )
This function is an alias of: implode().
join()
Make a string's first character lowercase
lcfirst ( string $str )
Calculate Levenshtein distance between two strings
levenshtein ( string $str1 , string $str2 )
Get numeric formatting information
localeconv ( void )
Strip whitespace (or other characters) from the beginning of a string
ltrim ( string $str [, string $charlist ] )
Calculates the md5 hash of a given file
md5_file ( string $filename [, bool $raw_output ] )
Calculate the md5 hash of a string
md5 ( string $str [, bool $raw_output ] )
Calculate the metaphone key of a string
metaphone ( string $str [, int $phones ] )
Formats a number as a currency string
money_format ( string $format , float $number )
Query language and locale information
nl_langinfo ( int $item )
Inserts HTML line breaks before all newlines in a string
nl2br ( string $string , bool $is_xhtml )
Format a number with grouped thousands
number_format ( float $number [, int $decimals ] )