I use preg_replace function. I want the function not to remove apostrophe (') character. So I want it to return the word as (o'clock) . How can I do that?
$last_word = "o'clock.";
$new_word= preg_replace('/[^a-zA-Z0-9 ]/','',$last_word);
echo $new_word;