Aryan PrajapatKnowledge Contributor
Name some of the functions in PHP.
Name some of the functions in PHP.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
Some of the functions in PHP include:
1.ereg() – The ereg() function searches a string specified by string for a string specified by the pattern, returning true if the pattern is found, and false otherwise.
2.split() – The split() function will divide a string into various elements, the boundaries of each element based on the occurrence of pattern in a string.
3.preg_match() – The preg_match() function searches a string for a pattern, returning true if a pattern exists, and false otherwise.
4.preg_split() – The preg_split() function operates exactly like split(), except that regular expressions are accepted as input parameters for pattern.