Cloudlog/application/controllers/welcome.php

18 行
358 B
PHP

2011-04-25 23:24:01 +08:00
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Welcome extends CI_Controller {
2011-04-25 23:24:01 +08:00
public function index()
{
$this->load->library('callbytxt');
2012-11-14 08:56:54 +08:00
$callbook = $this->callbytxt->callsign('m3php');
print_r($callbook);
2012-11-14 08:56:54 +08:00
2011-04-25 23:24:01 +08:00
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */