I have problem with codeigniter something like this i have string this like
$string="Mučnina – problem u vožnji!";
When i do something like this
$url_title = url_title($string, '_', TRUE);
I got this
$string="munina_problem_u_vonji";
Big difference?
How to modified url_title parameters?
This is what i done :
1. go to application/config/foreign_chars.php
2. added
'/š/' => 's', 
'/đ/' => 'd', 
'/č/' => 'c', 
'/ć/' => 'c', 
'/ž/' => 'z', 
'/Š/' => 'S', 
'/Đ/' => 'D', 
'/Č/' => 'C', 
'/Ć/' => 'C', 
'/Ž/' => 'Z', 
3. Just call
$clean=convert_accented_characters($string);
 $url_title = url_title($clean, '_', TRUE);
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With