PHP Regular Expressions What will be the output of the following PHP code?$url = "contact@examians.com";echo ltrim(strstr($url, "@"),"@"); contact contact@ contact@examians.com examians.com contact contact@ contact@examians.com examians.com ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$line = "You like dogs. I hate dogs. We should marry."$sen = preg_split('/./', $line);print_r($sen); Array([0]=>You like dogs. I hate dogs. We should marry.) You like dogs. I hate dogs. We should marry. Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.) Error Array([0]=>You like dogs. I hate dogs. We should marry.) You like dogs. I hate dogs. We should marry. Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.) Error ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions POSIX implementation was deprecated in which version of PHP? PHP 4 PHP 5.2 PHP 5.3 PHP 5 PHP 4 PHP 5.2 PHP 5.3 PHP 5 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-z] [A-za-z] [a-z] [A-Za-z0-9] [A-z] [A-za-z] [a-z] [A-Za-z0-9] 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 POSIX stands for Portative Operating System Interface for Unix Portative Operating System Interface for Linux Portable Operating System Interface for Unix Portable Operating System Interface for Linux Portative Operating System Interface for Unix Portative Operating System Interface for Linux Portable Operating System Interface for Unix Portable Operating System Interface for Linux ANSWER DOWNLOAD EXAMIANS APP