codeigniter cannot load library

前端 未结 4 1391
北荒
北荒 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 18:53

    Make sure your library loading is always done in lowercase, per the Documentation, object instances will always be lower case.

    Also make sure your library file is capitalized ProfileWall.php

    example load $this->load->library('profilewall');

    usage $this->profilewall->function();

提交回复
热议问题