PHP Regular Expressions [:alpha:] can also be specified as. [a-z] [A-Za-z0-9] [A-z] [A-za-z] [a-z] [A-Za-z0-9] [A-z] [A-za-z] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions finds the last occurrence of a string, returning its numerical position? strpos() strlastpos() strlast() strrpos() strpos() strlastpos() strlast() strrpos() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions. 8 9 10 7 8 9 10 7 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$username = "jasoN";if (ereg("([^a-z])",$username))echo "Username must be all lowercase!";elseecho "Username is all lowercase!"; Username must be all lowercase! Error Username is all lowercase! No Output is returned Username must be all lowercase! Error Username is all lowercase! No Output is returned ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions will convert a string to all uppercase? str_uppercase() uppercase() struppercase() strtoupper() str_uppercase() uppercase() struppercase() strtoupper() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions POSIX implementation was deprecated in which version of PHP? PHP 5.3 PHP 4 PHP 5.2 PHP 5 PHP 5.3 PHP 4 PHP 5.2 PHP 5 ANSWER DOWNLOAD EXAMIANS APP