codeigniter cannot load library

前端 未结 4 1380
北荒
北荒 2021-01-18 18:12

I have a problem that I can\'t load my library in my controller :S

I got this error: Message: Undefined property: Profil::$profileWall

My library:

         


        
4条回答
  •  被撕碎了的回忆
    2021-01-18 19:16

    I had the same problem and after straggling alot I realized that I was loading my libraries in a wrong format. I was not putting them into an array. I changed $this->load->library('email','custom'); to $this->load->library(array('email','custom'));.

提交回复
热议问题