Skip to content
Htain Lin Shwe edited this page Mar 8, 2012 · 4 revisions

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

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

Load the user library

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

Clone this wiki locally