is there any way to do wildcard changes using str_replace() ?
consider this:
$DataPrint[1] = str_replace(\"ref=pd_bsb_1\", \"hello\", $DataPrint[1]);
the value of ref variable will change all the time, therefore i need to replace everthing following starting from \"ref=some other stuff\" to \"hello\".
Thank you very much!