htmlentities не дает желаемого результата

У меня есть следующая функция ниже, как только результат все еще дает мне string(13) "hell'o"o" а не специальные символы

Функция:

private function makeHTMLSpecial($input)
{
return htmlentities(trim($input), ENT_QUOTES);
}

Код:

$new_descriptionCheck = $this->input->post('desc');

$new_description      = $this->makeHTMLSpecial($new_descriptionCheck);

-1

Решение

ваш брекет правильный?

private function makeHTMLSpecial($input)
{
return htmlentities(trim($input), ENT_QUOTES);
}

Тестирование длины строки …

$string = "hell'o\"o";
var_dump($string); // string 'hell'o"o' (length=8)
var_dump(htmlspecialchars($string)); // string 'hell'o"o' (length=13)
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]