PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 7 8 9 10 7 8 9 10 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$name = "What is your name?";if (preg_match("/name/"),$name)echo "My name is Will Pitt ";elseecho "My name is not Will Pitt ";if (preg_match("/are/"))echo "I am great"else echo "I am not great"; My name is Will Pitt I am not great My name is not Will Pitt I am great My name is Will Pitt I am great My name is not Will Pitt I am not great My name is Will Pitt I am not great My name is not Will Pitt I am great My name is Will Pitt I am great My name is not Will Pitt I am not great ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions. 7 8 9 10 7 8 9 10 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Say we have two compare two strings which of the following function/functions can you use?1. strcmp()2. strcasecmp()3. strspn()4. strcspn() None of the mentioned 3 and 4 All of the mentioned 1 and 2 None of the mentioned 3 and 4 All of the mentioned 1 and 2 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 is all lowercase! Username must be all lowercase! No Output is returned Error Username is all lowercase! Username must be all lowercase! No Output is returned Error ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-za-z] [a-z] [A-z] [A-Za-z0-9] [A-za-z] [a-z] [A-z] [A-Za-z0-9] ANSWER DOWNLOAD EXAMIANS APP