Fixed the io_safe_output function when the string has html entities defined by user
This commit is contained in:
parent
eb873ef593
commit
ce93888308
|
@ -222,31 +222,32 @@ function io_safe_output($value, $utf8 = true)
|
||||||
if (! mb_check_encoding ($value, 'UTF-8'))
|
if (! mb_check_encoding ($value, 'UTF-8'))
|
||||||
$value = utf8_encode ($value);
|
$value = utf8_encode ($value);
|
||||||
|
|
||||||
if ($utf8) {
|
|
||||||
$valueHtmlEncode = html_entity_decode ($value, ENT_QUOTES, "UTF-8");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$valueHtmlEncode = html_entity_decode ($value, ENT_QUOTES);
|
|
||||||
}
|
|
||||||
|
|
||||||
//Replace the html entitie of ( for the char
|
//Replace the html entitie of ( for the char
|
||||||
$valueHtmlEncode = str_replace("(", '(', $valueHtmlEncode);
|
$value = str_replace("(", '(', $value);
|
||||||
|
|
||||||
//Replace the html entitie of ) for the char
|
//Replace the html entitie of ) for the char
|
||||||
$valueHtmlEncode = str_replace(")", ')', $valueHtmlEncode);
|
$value = str_replace(")", ')', $value);
|
||||||
|
|
||||||
//Replace the html entitie of < for the char
|
//Replace the html entitie of < for the char
|
||||||
$valueHtmlEncode = str_replace("<", '<', $valueHtmlEncode);
|
$value = str_replace("<", '<', $value);
|
||||||
|
|
||||||
//Replace the html entitie of > for the char
|
//Replace the html entitie of > for the char
|
||||||
$valueHtmlEncode = str_replace(">", '>', $valueHtmlEncode);
|
$value = str_replace(">", '>', $value);
|
||||||
|
|
||||||
//Revert html entities to chars
|
//Revert html entities to chars
|
||||||
for ($i=0;$i<33;$i++) {
|
for ($i = 0; $i < 33; $i++) {
|
||||||
$valueHtmlEncode = str_ireplace("&#x".dechex($i).";",io_html_to_ascii(dechex($i)), $valueHtmlEncode);
|
$value = str_ireplace("&#x" . dechex($i) . ";",
|
||||||
|
io_html_to_ascii(dechex($i)), $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $valueHtmlEncode;
|
if ($utf8) {
|
||||||
|
$value = html_entity_decode ($value, ENT_QUOTES, "UTF-8");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$value = html_entity_decode ($value, ENT_QUOTES);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue