• 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/8

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;

8 Cards in this Set

  • Front
  • Back
How can a script come to a clean termination?
When exit() is called.
What is the name of the error level constant that is used to designate PHP code that will not work in future versions?
E_DEPRECATED
What is an anonymous function
Аllow the creation of functions which have no specified name
What are closures
Closures can also be used as the values of variables; PHP automatically converts such expressions into instances of the Closure internal class.
int strcmp ( string $str1 , string $str2 )
Returns < 0 if str1 is less than str2 ; > 0 if str1 is
greater than str2 , and 0 if they are equal.
int strcasecmp ( string $str1 , string $str2 )
case insensitive version of strcmp()
int strncasecmp ( string $str1 , string $str2 , int $len )
Binary safe case-insensitive string comparison of the first n characters
substr ( string $string , int $start [, int $length ] )
retrieve a portion of a string