Currently I have an array
$cop_row = array('first_pulse1', 'second_pulse2');
what I want is to replace first_ & second_ from the cop_row array .
I am using this right now but it is not giving me the required result.
str_replace("first_","",$cop_row);
I am getting output
pulse1second_pulse2
What I want is
pulse1pulse2
Thanks for your concern.