26 lines
687 B
PHP
26 lines
687 B
PHP
<?php
|
|
//ini_set("display_errors", "On");//打开错误提示
|
|
//ini_set("error_reporting",E_ALL);//显示所有错误
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
class Welcome extends CI_Controller
|
|
{
|
|
|
|
public function index()
|
|
{
|
|
$this->load->view('welcome_message');
|
|
}
|
|
|
|
public function test()
|
|
{
|
|
$this->load->library('carHome/callOut');
|
|
$callOut = new CallOut();
|
|
// $callOut->call();
|
|
// $this->load->model('receiver/receiver_customers_model', 'customers_model');
|
|
// $rid = 17418;
|
|
// $bizId = 57;
|
|
// $res = $this->customers_model->Commissions($rid, $bizId);
|
|
// var_dump($res);
|
|
}
|
|
}
|