What is the wrong with this code ?
it always returns zero matches.
I think it should return two matches,
I need to read how may tags like this pattern
if anybody can help.
Thank you
it always returns zero matches.
I think it should return two matches,
I need to read how may tags like this pattern
Code:
<!== any thing ==!>
Code:
$string = "<!==Abdo==!><!==Ahmed==!>";
print_r(preg_match_all("/<\!==*==\!>/", $string));
Thank you
Comment