I'm trying to get the result below, but I can not, could someone give me an idea?
My Cod.:
$string ='ZAMM Et a est hac pid pid sit amet, lacus nisi ZPPP scelerisque sagittis montes, porttitor ut arcu ZAMM tincidunt cursus eu amet nunc ZAMM c ac nunc, et pid pellentesque amet, ZSSS m urna scelerisque in vut';
if(preg_match_all("/ZAMM.*/", $string, $matches)) {
foreach($matches[0] as $match){
echo $match;
echo "<br />";
}
}
Expected result:
1: ZAMM Et a est hac pid pid sit amet, lacus nisi ZPPP scelerisque sagittis montes, porttitor ut arcu ZAMM tincidunt cursus eu amet nunc ZAMM c ac nunc, et pid pellentesque amet, ZSSS m urna scelerisque in vut
2: ZAMM tincidunt cursus eu amet nunc ZAMM c ac nunc, et pid pellentesque amet, ZSSS m urna scelerisque in vut
3: ZAMM c ac nunc, et pid pellentesque amet, ZSSS m urna scelerisque in vut