Ejemplo n.º 1
0
 public static function registerPathList($list = array())
 {
     $paths = explode(self::$_delimiter, get_include_path());
     self::$_paths = array_merge(self::$_paths, $list);
     self::$_pathsCount = count(self::$_paths);
     set_include_path(implode(self::$_delimiter, array_merge($paths, $list)));
 }
Ejemplo n.º 2
0
function update_buku($judul, $vol, $penulis, $id_buku)
{
    $lib = new ClassLibrary();
    $result = $lib->update_buku($judul, $vol, $penulis, $id_buku);
}