Codeigniterメッセージライブラリを使用しています。
私のコントローラーには次のコードがあります
public function __construct() {
parent::__construct();
$this->load->library('message');
}
public function box($box_id=null, $language_name=null) {
if($id_from_url[5]==null){
$this->message->set('Please provide Box ID in URL.', 'error');
}
}
私の見解では、私は使用します
$this->message->display();
すでにMessage.phpをapplication/librariesフォルダーに配置しましたが、次のエラーが発生します
Message: Missing argument 1 for CI_Message::CI_Message(), called in W:\Zend\Apache2\htdocs\mediabox\system\core\Loader.php on line 1099 and defined
このエラーについて何か考えはありますか?
前もって感謝します