Files
liche/api/controllers/Welcome.php
T
2022-04-01 10:36:21 +08:00

20 lines
510 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(){
$this->load->library('receiver/orders_v2_entity');
$biz_id = 134;
$row = $this->orders_v2_entity->get_biz_mchid($biz_id);
print_r($row);
}
}