close
動載入資源檔案位置,請開啟 application/config/autoload.php 的檔案
$autoload['libraries'] = array('myclass');
存檔位置
application/libraries 資料夾
命名規則
檔名第一個字母必須為大寫. 參考範例: Myclass.php
檔案範例
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Myclass {
protected $CI;
public function __construct()
{
// Assign the CodeIgniter super-object
$this->CI =& get_instance();
}
public function random_string($str_len){
$str = 'abcdefghijklmnopqrstuvwxyz0123456789';
$shuffled = str_shuffle($str);
return substr($shuffled, 0, $str_len);
}
}
使用自建類別
$this->myclass->函數名稱(參數);
$this->myclass->random_string(10); //產生10位亂數
全站熱搜
留言列表