22 lines
562 B
PHP
Executable File
22 lines
562 B
PHP
Executable File
<?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(){
|
|
$oid = $this->input->get('oid');
|
|
$this->load->library('qyrobot');
|
|
$params['test'] = 1;
|
|
$qy = new Qyrobot($params);
|
|
$res = $qy->deposit_notify_v3($oid);
|
|
var_dump($res);exit;
|
|
}
|
|
}
|