admin | 7b613c7 | 2006-09-24 18:05:17 +0000 | [diff] [blame^] | 1 | <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); |
| 2 | /** |
| 3 | * Code Igniter |
| 4 | * |
| 5 | * An open source application development framework for PHP 4.3.2 or newer |
| 6 | * |
| 7 | * @package CodeIgniter |
| 8 | * @author Rick Ellis |
| 9 | * @copyright Copyright (c) 2006, pMachine, Inc. |
| 10 | * @license http://www.codeignitor.com/user_guide/license.html |
| 11 | * @link http://www.codeigniter.com |
| 12 | * @since Version 1.0 |
| 13 | * @filesource |
| 14 | */ |
| 15 | |
| 16 | // ------------------------------------------------------------------------ |
| 17 | |
| 18 | /** |
| 19 | * MySQLi Utility Class |
| 20 | * |
| 21 | * @category Database |
| 22 | * @author Rick Ellis |
| 23 | * @link http://www.codeigniter.com/user_guide/database/ |
| 24 | */ |
| 25 | class CI_DB_mysqli_utility { |
| 26 | |
| 27 | /** |
| 28 | * Some function |
| 29 | * |
| 30 | * @access public |
| 31 | * @return integer |
| 32 | */ |
| 33 | function something() |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | // -------------------------------------------------------------------- |
| 38 | |
| 39 | } |
| 40 | |
| 41 | ?> |