Fix Microsoft Word copy and paste 8,124 views

Replace those funny characters into the appropriate - " ' when pasting from word to an online form

 1<?php 2// fix microsoft word copy and paste! 3$search = array(chr(145), chr(146), chr(147), chr(148), chr(150), chr(151)); 4$replace = array(    "'",      "'",      '"',      '"',     '--',      '-'); 5 6$str = str_replace($search, $replace, $str);