php 양음부호 대체하는 함수 만들기
php 양음부호 치환 함수입니다. * Replace Accent - 양음부호 대체 * @param string $str * @return string */ if (!function_exists('replace_accent')) { function replace_accent($str) { $arr = array( 'Š' => 'S', 'š' => 's', 'Ž' => 'Z', 'ž' => 'z', 'À' => 'A', 'Á' => 'A', 'Â' => 'A', 'Ã' => 'A', 'Ä' => 'A', 'Å' => 'A', 'Æ' => 'A', 'Ç' => 'C', 'È' => 'E', 'É' => 'E', 'Ê' => 'E', 'Ë' => 'E', 'Ì' => 'I', 'Í' => 'I', 'Î' => ..
2023. 3. 22.