Cloudlog/application/controllers/welcome.php
2012-11-14 02:08:24 +00:00

18 行
无行尾
358 B
PHP

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Welcome extends CI_Controller {
public function index()
{
$this->load->library('callbytxt');
$callbook = $this->callbytxt->callsign('m3php');
print_r($callbook);
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */