SarkariResultess QA Bank

PHP regex match करने का function क्या है? इसका सही PHP syntax क्या है?

Other 0 Views Verified
PHP regex match करने का function क्या है? इसका सही PHP syntax क्या है? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

match_regex($text);

match_regex($text);
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

$text.regex('/php/i');

$text.regex('/php/i');
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

regex_match_php($text);

regex_match_php($text);
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

preg_match('/php/i', $text);

preg_match('/php/i', $text);
Additional Explanation
preg_match() regex pattern match करता है।