1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- namespace app\controller;
- use app\BaseController;
- use app\common\array2xml;
- use think\facade\Db;
- use think\facade\Cache;
- class Index extends BaseController
- {
- public function index()
- {
- phpinfo();
- }
- public function hello($name = 'ThinkPHP6')
- {
- return 'hello,' . $name;
- }
- public function getReport()
- {
- libxml_disable_entity_loader(false);
- $client = new \SoapClient("http://112.103.134.89:10020/server.php?wsdl");
- $data = [
- 'Barcode'=>'12203310010001'
- ]; //请求参数
- $a2x = new array2xml();
- $data = $a2x->toXml($data); //参数转xml
- try{
- $result = $client->getDiAnData($data); //请求获取接口
- }catch(\SoapFault $e){
- return $e->getMessage();
- }
- var_dump(htmlspecialchars($result));die;
- $obj = simplexml_load_string($result,"SimpleXMLElement", LIBXML_NOCDATA);
- $ins = json_encode($obj);
- $obj = json_decode($ins,true);
- var_dump($obj);die;
- }
- public function aa()
- {
- $conn = mysqli_connect('localhost','root','');
- $a = mysqli_select_db($conn,'tijianzhongxin');
- $sql = "select * from dianApiInfo where Barcode='12203020024872'";
- $result = mysqli_query($conn, $sql);
- $info = mysqli_fetch_row($result);
- var_dump($info);die;
- if(!empty($info))
- {
- $return = [
- 'xml'=>$info[1],
- 'patientId'=>$info[2],
- 'barCode'=>$info[3]
- ];
- $a2x = new array2xml();
- $r = $a2x->toXml($return);
- return $r;
- }else{
- return '';
- }
- }
- }
|