Answer the question
In order to leave comments, you need to log in
Page titles have question marks instead of letters. How to fix, friends?
Please help fix the error. Now the value is "AddDefaultCharset utf-8"
Answer the question
In order to leave comments, you need to log in
This problem occurs when text is truncated using functions that do not work with multibyte encodings.
Now your text is cut off like this:
$title = substr($title, 0 ,15);
but you need
$title = mb_substr($title, 0 ,15);
more details here: https://secure.php.net/manual/en/ref.mbstring.php
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question