PHP Regular Expressions POSIX stands for Portative Operating System Interface for Linux Portative Operating System Interface for Unix Portable Operating System Interface for Linux Portable Operating System Interface for Unix Portative Operating System Interface for Linux Portative Operating System Interface for Unix Portable Operating System Interface for Linux Portable Operating System Interface for Unix ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions can be used to concatenate array elements to form a single delimited string? concatenate() implode() concat() explode() concatenate() implode() concat() explode() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Parameter flags was added in which version of PHP? PHP 4.0 PHP 4.2 PHP 4.3 PHP 4.1 PHP 4.0 PHP 4.2 PHP 4.3 PHP 4.1 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 [:alpha:] can also be specified as. [A-Za-z0-9] [A-za-z] [A-z] [a-z] [A-Za-z0-9] [A-za-z] [A-z] [a-z] 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 ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [1] => steak ) Array ( [3] => potatoes ) Array ( [0] => potatoes ) Array ( [0] => pasta [1] => steak [2] => fish [3] => potatoes ) Array ( [1] => steak ) Array ( [3] => potatoes ) ANSWER DOWNLOAD EXAMIANS APP