Want to remove Â
Posted: Mon Sep 15, 2008 1:58 am
I want to strip this character: Â
I'm not quite sure how to do this. Any help would be great!
I'm not quite sure how to do this. Any help would be great!
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
ecom wrote:I want to strip this character: Â
I'm not quite sure how to do this. Any help would be great!
Code: Select all
$str = 'aaÂaa';
$str = preg_replace('/Â/', '', str);