InterviewSolution
Saved Bookmarks
| 1. |
Which one of the following is not a preg PHP function?(a) preg_match(b) preg_match_all(c) preg_matchall(d) preg_splitThis question was posed to me by my college director while I was bunking the class.Asked question is from Introduction to Preg in PHP in division Objects and Databases in PHP of PHP |
|
Answer» CORRECT OPTION is (c) preg_matchall The explanation: The function preg_match_all() MATCHES all occurrences of pattern in STRING. |
|