我在CI中进行了表单验证。我想显示validation_errors()消息,但我认为这不是一个友好的消息。它看起来像这样:
%3Cp%3EThe%20First%20Name%20field%20can%20not%20exceed%201%20characters%20in%20length.%3C
知道如何显示消息吗?感谢。
答案 0 :(得分:0)
使用urldecode
http://php.net/manual/en/function.urldecode.php
public function post_message($message)
{
echo urldecode($message);
}