search
Homephp教程php手册Train ticket booking interface completes the train ticket booking process

This tutorial is used to demonstrate the usage process of the aggregated data-train ticket booking interface.
1. Configure the PHP environment. The PHP version is preferably greater than 5.5
2. De-aggregate data - train ticket booking interface application key: https://www.juhe.cn/docs/api/id/173
3. The following code is for you to understand the process. Do not copy it directly and do not use it in the production environment. 'The key you applied for', <br> 'url' => array( <br> 'cityCode' => 'http://op.juhe.cn/trainTickets/cityCode', <br> 'ticketsAvailable' => 'http://op.juhe.cn/trainTickets/ticketsAvailable', <br> 'submit' => 'http://op.juhe.cn/trainTickets/submit', <br> 'orderStatus' => 'http://op.juhe.cn/trainTickets/orderStatus', <br> 'pay' => 'http://op.juhe.cn/trainTickets/pay', <br> ), <br> ); <br> #1. Check the site short code <br> echo 'Itinerary planning: July 1, 2015, starting from Suzhou and destination Qingdao <br> [object Object]'; <br> echo 'First check the short codes of Suzhou Station and Qingdao Station <br> '; <br> //Query the short code of Suzhou Station <br> $suzhouCodeResponse = post($config['url']['cityCode'], 'key='.$config['key'].'&stationName=Suzhou'); <br> $suzhouCodeArray = json_decode($suzhouCodeResponse, true); <br> $suzhouCode = $suzhouCodeArray['result']['code']; <br> echo 'The short code of the Suzhou station is: '.$suzhouCode.' <br> '; <br> // Query the short code of Qingdao Station <br> $qingdaoCodeResponse = post($config['url']['cityCode'], 'key='.$config['key'].'&stationName=Qingdao'); <br> $qingdaoCodeArray = json_decode($suzhouCodeResponse, true); <br> $qingdaoCode = $qingdaoCodeArray['result']['code']; <br> echo 'The short code of the Qingdao station is: '.$qingdaoCode.' <br> [object Object]'; <br> #2. Check remaining votes <br> echo 'Then check the remaining ticket information <br> '; <br> $ticketsAvailableResponse = post($config['url']['ticketsAvailable'], <br> '&key='.$config['key']. <br> '&train_date=2015-07-01'. //Pay attention to the date format <br> '&from_station=SZH'. //The short code of Suzhou Station found in the previous step is SZH <br> '&to_station=QDK' //The short code of Qingdao station found in the previous step is QDK <br> ); <br> $ticketsAvailableArray = json_decode($ticketsAvailableResponse, true); <br> echo 'Remaining ticket information queried: <br> '; <br> print_r($ticketsAvailableArray['result']['list']); <br> echo ' <br> [object Object]'; <br> #3. Submit order <br> echo 'Submit order <br> '; <br> echo 'Based on the remaining ticket information, it was found that the G226 train is more suitable <br> '; <br> echo 'Please look at the remaining ticket details of train G226. Some fields need attention: <br> '; <br> echo 'start_station_name: Starting station, Shanghai Hongqiao <br> '; <br> echo 'from_station_name: The station we are about to depart from, Suzhou North, please note it is not Suzhou <br> '; <br> echo 'from_station_code: OHH, please note that this is the short code of Suzhou North Station, not Suzhou Station, and it is also the parameter passed when we submit the order <br> '; <br> $passengersArray = array( <br> array( <br> 'passengerid' => '1123', //The passenger's sequence number. When there are multiple passengers, each person's passenger number must be unique <br> 'Passengersename' => 'Zhang San', //Please replace it with your real name <br> 'piaotype' => '1', //Please carefully check the corresponding relationship between piaotype and piaotypename in the official website document, and make sure there is no mistake <br>'piaotypename' => 'Adult ticket', <br> 'Passporttypeseid' => '1', //Please carefully check the corresponding relationship between passporttypeseid and passporttypeseidname in the official website document to make sure there is no mistake <br> ‘passporttypeseidname’ => ‘Second generation ID card’, <br> 'passportseno' => '420205199207231234', //Please replace it with your real ID number <br> 'price' => '763.5', //Fill in the real price <br> 'zwcode' => 'M', //Please confirm whether there is such a seat in the train you selected <br> 'zwname' => 'First Class', <br> ), <br> array( //Second passenger, up to five passengers <br> 'passengerid' => '2123', <br> 'passengersename' => '李思', <br> 'piaotype' => '1', <br> 'piaotypename' => 'Adult ticket', <br> 'passporttypeseid' => '1', <br> ‘passporttypeseidname’ => ‘Second generation ID card’, <br> 'passportseno' => '23060519930621234', <br> 'price' => '59.5', <br> 'zwcode' => 'M', <br> 'zwname' => 'First class', <br> ) <br> ); <br> $postArray = array( <br> 'key' => $config['key'], <br> 'checi' => 'G226', //From the previous query, it was found that G226 has more votes <br> 'from_station_code' => 'OHH', //The short code of the departure station, please note it is not SZH (Suzhou) <br> 'from_station_name' => 'Suzhou North', //The name of the departure station must correspond to the short code of the departure station <br> 'to_station_code' => 'QDK', //Short code for arriving at the station <br> 'to_station_name' => 'Qingdao', //The name of the arrival station must correspond to the short code of the arrival station <br> 'train_date' => '2015-07-01', //Train date, pay attention to the time format <br> 'passengers' => json_encode($passengersArray, JSON_UNESCAPED_UNICODE), <br> ); <br> $postStr = ''; <br> foreach ($postArray as $key => $value) { <br> $postStr .= '&'.$key.'='.$value; <br> } <br> //echo $postStr;exit; <br> $submit = post($config['url']['submit'], $postStr); <br> //echo $submit;exit; <br> echo '[object Object]'; <br> /* Normal output example <br> { <br> "reason": "Successful return", <br> "result": { <br> "orderid": "1433493562439" //You can check the processing status based on this order number later <br> }, <br> "error_code": 0 <br> } <br> */​<br> #4. Check order status <br> echo 'Check order status <br> '; <br> //Please replace the order number with your own order number <br> $status = post($config['url']['orderStatus'], 'key='.$config['key'].'&orderid=1433493562439'); <br> echo $status; <br>#5. Request a ticket (the money will be deducted from your aggregation account); please make sure your order is an order to be paid before requesting data from this interface <br> echo '[object Object]Request to issue a ticket (the premise is to check the order status and know that the seat occupation is successful) <br> '; <br> $pay = post($config['url']['pay'], 'key='.$config['key'].'&orderid=1433493562439'); <br> echo $pay;

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
了解Python编程的入门级代码示例了解Python编程的入门级代码示例Jan 04, 2024 am 10:50 AM

了解Python编程的入门级代码示例Python是一种简单易学,功能强大的编程语言。对于初学者来说,了解Python编程的入门级代码示例是非常重要的。本文将为您提供一些具体的代码示例,帮助您快速入门。打印HelloWorldprint("HelloWorld")这是Python中最简单的代码示例。print()函数用于将指定的内容输出

PHP переменные в действии: 10 реальных примеров использованияPHP переменные в действии: 10 реальных примеров использованияFeb 19, 2024 pm 03:00 PM

PHP变量存储程序运行期间的值,对于构建动态且交互式的WEB应用程序至关重要。本文将深入探讨php变量,并通过10个真实的示例展示它们的实际应用。1.存储用户输入$username=$_POST["username"];$passWord=$_POST["password"];此示例从表单提交中提取用户名和密码,并将其存储在变量中以供进一步处理。2.设置配置值$database_host="localhost";$database_username="username";$database_pa

从入门到精通:Go语言中常用数据结构的代码实现从入门到精通:Go语言中常用数据结构的代码实现Mar 04, 2024 pm 03:09 PM

标题:从入门到精通:Go语言中常用数据结构的代码实现数据结构在编程中起着至关重要的作用,它是程序设计的基础。在Go语言中,有许多常用的数据结构,掌握这些数据结构的实现方式对于成为一名优秀的程序员至关重要。本文将介绍Go语言中常用的数据结构,并给出相应的代码示例,帮助读者从入门到精通这些数据结构。1.数组(Array)数组是一种基本的数据结构,是一组相同类型

Go语言编程实例:Web开发中的代码示例Go语言编程实例:Web开发中的代码示例Mar 04, 2024 pm 04:54 PM

《Go语言编程实例:Web开发中的代码示例》随着互联网的快速发展,Web开发已经成为各行业中必不可少的一部分。作为一门功能强大且性能优越的编程语言,Go语言在Web开发中越来越受到开发者们的青睐。本文将通过具体的代码示例,介绍如何利用Go语言进行Web开发,让读者能够更好地理解和运用Go语言来构建自己的Web应用。1.简单的HTTP服务器首先,让我们从一个

Java实现简单的冒泡排序代码Java实现简单的冒泡排序代码Jan 30, 2024 am 09:34 AM

Java冒泡排序最简单的代码示例冒泡排序是一种常见的排序算法,它的基本思想是通过相邻元素的比较和交换来将待排序序列逐步调整为有序序列。下面是一个简单的Java代码示例,演示了如何实现冒泡排序:publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

如何使用PHP编写库存管理系统中的库存分仓管理功能代码如何使用PHP编写库存管理系统中的库存分仓管理功能代码Aug 06, 2023 pm 04:49 PM

如何使用PHP编写库存管理系统中的库存分仓管理功能代码库存管理是许多企业中不可或缺的一部分。对于拥有多个仓库的企业来说,库存分仓管理功能尤为重要。通过合理管理和跟踪库存,企业可以实现不同仓库之间的库存调拨,优化运营成本,改善协同效率。本文将介绍如何使用PHP编写库存分仓管理功能的代码,并为您提供相关的代码示例。一、建立数据库在开始编写库存分仓管理功能的代码之

指导与示例:学习Java选择排序算法的实现指导与示例:学习Java选择排序算法的实现Feb 18, 2024 am 10:52 AM

Java选择排序法代码编写指南及示例选择排序是一种简单直观的排序算法,其思想是每次从未排序的元素中选择最小(或最大)的元素进行交换,直到所有元素排序完成。本文将提供选择排序的代码编写指南,并附上具体的Java示例代码。算法原理选择排序的基本原理是将待排序数组分为已排序和未排序两部分,每次从未排序部分选择最小(或最大)的元素,将其放到已排序部分的末尾。重复上述

华为云边缘计算对接指南:Java代码示例快速实现接口华为云边缘计算对接指南:Java代码示例快速实现接口Jul 05, 2023 pm 09:57 PM

华为云边缘计算对接指南:Java代码示例快速实现接口随着物联网技术的快速发展和边缘计算的兴起,越来越多的企业开始关注边缘计算的应用。华为云提供了边缘计算服务,为企业提供了高可靠的计算资源和便捷的开发环境,使得边缘计算应用更加容易实现。本文将介绍如何通过Java代码快速实现华为云边缘计算的接口。首先,我们需要准备好开发环境。确保你已经安装了Java开发工具包(

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.