PHP Regular Expressions Which one of the following functions can be used to concatenate array elements to form a single delimited string? concatenate() concat() implode() explode() concatenate() concat() implode() explode() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following regular expression matches any string containing zero or one p? p# P? p* p+ p# P? p* p+ ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$foods = array("pasta", "steak", "fish", "potatoes");$food = preg_grep("/^s/", $foods);print_r($food); Array ( [0] => potatoes ) Array ( [3] => potatoes ) Array ( [1] => steak ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [0] => potatoes ) Array ( [3] => potatoes ) Array ( [1] => steak ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_matchall preg_split preg_match preg_match_all preg_matchall preg_split preg_match preg_match_all 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() 3 and 4 None of the mentioned 1 and 2 All of the mentioned 3 and 4 None of the mentioned 1 and 2 All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions POSIX implementation was deprecated in which version of PHP? PHP 5.2 PHP 5 PHP 4 PHP 5.3 PHP 5.2 PHP 5 PHP 4 PHP 5.3 ANSWER DOWNLOAD EXAMIANS APP