<?php $data = "Hai FIELDMERGE_nickname, Your city is FIELDMERGE_city and your gender is FIELDMERGE_gender. webinar title is FIELDMERGE_extraparam1 Again your name is FIELDMERGE_nickname"; $arr = explode("FIELDMERGE_", $data); array_shift($arr); foreach($arr as $e) { $a = explode(" ", $e); $res[] = preg_replace('/[^a-z\d]/i', '', array_shift($a)); //$res[] = trim(array_shift($a)); } print_r($res);
You have javascript disabled. You will not be able to edit any code.