Skip to content
saturngod edited this page Mar 8, 2012 · 4 revisions

Create mylibrary.php at /system/user/libraries/

<?php
class Ava_mylibrary
{
    function hello()
    {
        return "world";
    }
}
?>

You can call mylibrary.php like

<?php
$this->load->library('mylibrary');
echo $this->mylibrary->hello();
?>

Clone this wiki locally