次のステートメントを使用して、CodeIgniter の from_validation ライブラリでエラーのカスタム メッセージを設定しようとすると..
$this->form_validation->set_message("is_unique", "%s already registered. Try a different %s");
得る代わりに、Username already registered. Try a different Username
私は得ていますUsername already registered. Try a different users.username
ドキュメントが言う間If you include %s in your error string, it will be replaced with the "human" name you used for your field when you set your rules.
私を罠から出してください。