18 行
无行尾
358 B
PHP
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 */ |