<?php $string = "ãçé"; $string = preg_replace('/[^?\,\;%\/.~!\'"]/', null, iconv( 'UTF-8', 'ASCII/TRANSLIT', $string)); $string = preg_replace('/&/','e', iconv( 'UTF-8', 'ASCII/TRANSLIT', $string)); print str_replace(" ", "-",($string)) . "\n"; $string = "ãçé"; $string = preg_replace('/[^?\,\;%\/.~!\'"]/', '', iconv( 'UTF-8', 'ASCII/TRANSLIT', $string)); $string = preg_replace('/&/','e', iconv( 'UTF-8', 'ASCII/TRANSLIT', $string)); print str_replace(" ", "-",($string)) . "\n";
You have javascript disabled. You will not be able to edit any code.