<?php require_once 'curl.func.php'; $appkey = 'your_appkey_here';//你的appkey $date = '2018-06-16'; $theaterid = '2059'; $url = "https://api.jisuapi.com/movie/theatermovie?date=$date&theaterid=$theaterid&appkey=$appkey"; $result = curlOpen($url, ['ssl'=>true]); $jsonarr = json_decode($result, true); if($jsonarr['status'] != 0) { echo $jsonarr['msg']; exit(); } $result = $jsonarr['result']; echo $result['theaterid'].' '.$result['date'].' '.$result['theatername'].' '.$result['city'].' '.$result['lat'].' '.$result['lng'].' '.$result['num']. '
'; foreach($result['list'] as $val) { echo $val['moviename'].' '.$val['movieid'].' '.$val['enname'].' '.$val['director'].' '.$val['actor'].' '.$val['duration'].' '.$val['class'] .' '.$val['year'] .'
'; foreach ($val['showtimes'] as $v){ echo $v['starttime'].' '.$v['screentype'].' '.$v['language'].' '.$v['endtime'].' '.$v['hallname'].' '.$v['seatnum'].' '.$v['issale'] .' '.$v['originalprice'].' '.$v['price'].' '.$v['ticketurl'] .'
'; } }
© 2015-2024 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875