国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
PHP makes a cross-platform restfule interface based on curl extension
Home Backend Development PHP Tutorial PHP makes a cross-platform restfule interface based on curl extension_PHP tutorial

PHP makes a cross-platform restfule interface based on curl extension_PHP tutorial

Jul 13, 2016 am 09:54 AM
curl php

PHP makes a cross-platform restfule interface based on curl extension

This article mainly introduces the relevant information and detailed code of making a cross-platform restfule interface in PHP based on curl extension. There are Friends who need it can refer to it.

Restfule interface

Applicable platforms: cross-platform

Depends on: curl extension

 git:https://git.oschina.net/anziguoer/restAPI

ApiServer.php

 ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

/**

* @Author: yangyulong

* @Email : anziguoer@sina.com

* @Date: 2015-04-30 05:38:34

* @Last Modified by: yangyulong

* @Last Modified time: 2015-04-30 17:14:11

*/

class apiServer

{

/**

* Client request method

* @var string

*/

private $method = '';

/**

* Data sent by the client

* @var [type]

*/

protected $param;

/**

* The resource to be operated

* @var [type]

*/

protected $resourse;

/**

* Resource id to be operated

* @var [type]

*/

protected $resourseId;

/**

* Constructor, obtains the client request method and the transmitted data

* @param object can customize the passed in object

*/

public function __construct()

{

//First verify the client’s request

$this->authorization();

$this->method = strtolower($_SERVER['REQUEST_METHOD']);

//All requests are in pathinfo mode

$pathinfo = $_SERVER['PATH_INFO'];

//Map pathinfo data information to the actual request method

$this->getResourse($pathinfo);

//Get the specific parameters of transmission

$this->getData();

//Execute response

$this->doResponse();

}

/**

* Obtain data according to different request methods

* @return [type]

*/

private function doResponse(){

switch ($this->method) {

case 'get':

$this->_get();

break;

case 'post':

$this->_post();

break;

case 'delete':

$this->_delete();

break;

case 'put':

$this->_put();

break;

default:

$this->_get();

break;

}

}

// Map pathinfo data information to the actual request method

private function getResourse($pathinfo){

/**

* Map pathinfo data information to the actual request method

* GET /users: List all users page by page;

* POST /users: Create a new user;

* GET /users/123: Returns the detailed information of user 123;

* PUT /users/123: Update user 123;

* DELETE /users/123: Delete user 123;

*

* According to the above rules, map the first parameter of pathinfo to the data table that needs to be operated,

* The second parameter is mapped to the id of the operation

*/

$info = explode('/', ltrim($pathinfo, '/'));

list($this->resourse, $this->resourseId) = $info;

}

/**

* Verification request

*/

private function authorization(){

$token = $_SERVER['HTTP_CLIENT_TOKEN'];

$authorization = md5(substr(md5($token), 8, 24).$token);

if($authorization != $_SERVER['HTTP_CLIENT_CODE']){

//Verification fails and error message is output to the client

$this->outPut($status = 1);

}

}

/**

* [getData gets the transmitted parameter information]

* @param [type] $pad [description]

* @return [type] [description]

*/

private function getData(){

//All parameters are passed by get

$this->param = $_GET;

}

/**

* Get resource operation

* @return [type] [description]

*/

protected function _get(){

//The logic code is implemented according to your actual project needs

}

/**

* Add new resource operation

* @return [type] [description]

*/

protected function _post(){

//The logic code is implemented according to your actual project needs

}

/**

* Delete resource operation

* @return [type] [description]

*/

protected function _delete(){

//The logic code is implemented according to your actual project needs

}

/**

* Update resource operation

* @return [type] [description]

*/

protected function _put(){

//The logic code is implemented according to your actual project needs

}

/**

* Data information returned by the server in json format

*/

public function outPut($stat, $data=array()){

$status = array(

//0 status means the request is successful

0 => array(

'code' => 1,

'info' => 'Request successful',

'data' =>$data

),

//Verification failed

1 => array(

'code' => 0,

'info' => 'Illegal request'

)

);

try{

if(!in_array($stat, array_keys($status))){

throw new Exception('The entered status code is illegal');

}else{

echo json_encode($status[$stat]);

}

}catch (Exception $e){

die($e->getMessage());

}

}

}

  ApiClient.php

  ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

?

/**

* Created by PhpStorm.

* User: anziguoer@sina.com

* Date: 2015/4/29

* Time: 12:36

* link: http://www.ruanyifeng.com/blog/2014/05/restful_api.html [restful design guide]

*/

/*** * * * * * * * * * * * * * * * * * * * * * * * * * ***

* Define the routing request method *

* *

* $url_model=0 *

* Use traditional URL parameter mode *

* http://serverName/appName/?m=module&a=action&id=1 *

* * * * * * * * * * * * * * * * * * * * * * * * * * * * *

* PATHINFO mode (default mode) *

* Set url_model to 1 *

* http://serverName/appName/module/action/id/1/ *

** * * * * * * * * * * * * * * * * * * * * * * * * * * **

*/

class restClient

{

//Requested token

const token='yangyulong';

//Request url

private $url;

//Type of request

private $requestType;

//Requested data

private $data;

//curl instance

private $curl;

public $status;

private $headers = array();

/**

* [__construct construction method, initialization data]

* @param [type] $url requested server address

* @param [type] $requestType Method to send request

* @param [type] $data The data sent

* @param integer $url_model routing request method

*/

public function __construct($url, $data = array(), $requestType = 'get') {

//url must be passed, and it must be a path that conforms to the PATHINFO mode

if (!$url) {

return false;

}

$this->requestType = strtolower($requestType);

$paramUrl = '';

//PATHINFO mode

if (!empty($data)) {

foreach ($data as $key => $value) {

$paramUrl.= $key . '=' . $value.'&';

}

$url = $url .'?'. $paramUrl;

}

//Initialize the data in the class

$this->url = $url;

$this->data = $data;

try{

if(!$this->curl = curl_init()){

throw new Exception('curl initialization error: ');

};

}catch (Exception $e){

echo '

';</p>
            <p>print_r($e->getMessage());</p>
            <p>echo '
';

}

curl_setopt($this->curl, CURLOPT_URL, $this->url);

curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, 1);

}

/**

* [_post sets the parameters of get request]

* @return [type] [description]

*/

public function _get() {

}

/**

* [_post sets the parameters of the post request]

* post new resources

* @return [type] [description]

*/

public function _post() {

curl_setopt($this->curl, CURLOPT_POST, 1);

curl_setopt($this->curl, CURLOPT_POSTFIELDS, $this->data);

}

/**

* [_put set put request]

* put update resource

* @return [type] [description]

*/

public function _put() {

curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, 'PUT');

}

/**

* [_delete delete resource]

* delete delete resource

* @return [type] [description]

*/

public function _delete() {

curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, 'DELETE');

}

/**

* [doRequest executes sending request]

* @return [type] [description]

*/

public function doRequest() {

//Send verification information to the server

if((null !== self::token) && self::token){

$this->headers = array(

'Client_Token: '.self::token,

'Client_Code: '.$this->setAuthorization()

);

}

//Send header information

$this->setHeader();

//How to send a request

switch ($this->requestType) {

case 'post':

$this->_post();

break;

case 'put':

$this->_put();

break;

case 'delete':

$this->_delete();

break;

default:

curl_setopt($this->curl, CURLOPT_HTTPGET, TRUE);

break;

}

//Execute curl request

$info = curl_exec($this->curl);

//Get curl execution status information

$this->status = $this->getInfo();

return $info;

}

/**

* Set the header information sent

*/

private function setHeader(){

curl_setopt($this->curl, CURLOPT_HTTPHEADER, $this->headers);

}

/**

* Generate authorization code

* @return string authorization code

*/

private function setAuthorization(){

$authorization = md5(substr(md5(self::token), 8, 24).self::token);

return $authorization;

}

/**

* Get status information in curl

*/

public function getInfo(){

return curl_getinfo($this->curl);

}

/**

* Close curl connection

*/

public function __destruct(){

curl_close($this->curl);

}

}

testClient.php

 ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

/**

* Created by PhpStorm.

* User: anziguoer@sina.com

* Date: 2015/4/29

* Time: 12:35

*/

include './ApiClient.php';

$arr = array(

'user' => 'anziguoer',

'passwd' => 'yangyulong'

);

// $url = 'http://localhost/restAPI/restServer.php';

$url = 'http://localhost/restAPI/testServer.php/user/123';

?

$rest = new restClient($url, $arr, 'get');

$info = $rest->doRequest();

?

//獲取curl中的狀態(tài)信息

$status = $rest->status;

echo '

';</p>
            <p>print_r($info);</p>
            <p>echo '
';

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/** * Created by PhpStorm. * User: anziguoer@sina.com * Date: 2015/4/29 * Time: 12:35 */ include './ApiClient.php'; $arr = array( 'user' => 'anziguoer', 'passwd' => 'yangyulong' ); // $url = 'http://localhost/restAPI/restServer.php'; $url = 'http://localhost/restAPI/testServer.php/user/123'; $rest = new restClient($url, $arr, 'get'); $info = $rest->doRequest(); //Get status information in curl $status = $rest->status; echo '
';
            print_r($info);
            echo '
';

  testServer.php

  ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

/**

* @Author: anziguoer@sina.com

* @Email: anziguoer@sina.com

* @link: https://git.oschina.net/anziguoer

* @Date: 2015-04-30 16:52:53

* @Last Modified by: yangyulong

* @Last Modified time: 2015-04-30 17:26:37

*/

include './ApiServer.php';

class testServer extends apiServer

{

/**

* 先執(zhí)行apiServer中的方法,初始化數(shù)據(jù)

* @param object $obj 可以傳入的全局對(duì)象[數(shù)據(jù)庫(kù)對(duì)象,框架全局對(duì)象等]

*/

private $obj;

function __construct()//object $obj

{

parent::__construct();

//$this->obj = $obj;

//$this->resourse; 父類中已經(jīng)實(shí)現(xiàn),此類中可以直接使用

//$tihs->resourseId; 父類中已經(jīng)實(shí)現(xiàn),此類中可以直接使用

}

?

/**

* 獲取資源操作

* @return [type] [description]

*/

protected function _get(){

echo "get";

//邏輯代碼根據(jù)自己實(shí)際項(xiàng)目需要實(shí)現(xiàn)

}

?

/**

* 新增資源操作

* @return [type] [description]

*/

protected function _post(){

echo "post";

//邏輯代碼根據(jù)自己實(shí)際項(xiàng)目需要實(shí)現(xiàn)

}

?

/**

* 刪除資源操作

* @return [type] [description]

*/

protected function _delete(){

//邏輯代碼根據(jù)自己實(shí)際項(xiàng)目需要實(shí)現(xiàn)

}

?

/**

* 更新資源操作

* @return [type] [description]

*/

protected function _put(){

echo "put";

//邏輯代碼根據(jù)自己實(shí)際項(xiàng)目需要實(shí)現(xiàn)

}

}

?

$server = new testServer();

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
/** * @Author: anziguoer@sina.com * @Email: anziguoer@sina.com * @link: https://git.oschina.net/anziguoer * @Date: 2015-04-30 16:52:53 * @Last Modified by: yangyulong * @Last Modified time: 2015-04-30 17:26:37 */ ? include './ApiServer.php'; ? class testServer extends apiServer { /** * First execute the method in apiServer and initialize the data * @param object $obj The global object that can be passed in [database object, framework global object, etc.] */ ? private $obj; ? function __construct()//object $obj { parent::__construct(); //$this->obj = $obj; //$this->resourse; 父類中已經(jīng)實(shí)現(xiàn),此類中可以直接使用 //$tihs->resourseId; 父類中已經(jīng)實(shí)現(xiàn),此類中可以直接使用 } ? /** * Get resource operation * @return [type] [description] */ protected function _get(){ echo "get"; //邏輯代碼根據(jù)自己實(shí)際項(xiàng)目需要實(shí)現(xiàn) } ? /** * Add new resource operation * @return [type] [description] */ protected function _post(){ echo "post"; //邏輯代碼根據(jù)自己實(shí)際項(xiàng)目需要實(shí)現(xiàn) } ? /** * Delete resource operation * @return [type] [description] */ protected function _delete(){ //邏輯代碼根據(jù)自己實(shí)際項(xiàng)目需要實(shí)現(xiàn) } ? /** * Update resource operation * @return [type] [description] */ protected function _put(){ echo "put"; //邏輯代碼根據(jù)自己實(shí)際項(xiàng)目需要實(shí)現(xiàn) } } ? $server = new testServer();

The above is the entire content of this article, I hope you all like it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/998362.htmlTechArticlephp is based on curl extension to make a cross-platform restfule interface. This article mainly introduces php to make a cross-platform restfule interface based on curl extension. If you need relevant information and detailed code of the restfule interface...
Statement of this Website
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

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

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.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1502
276
PHP calls AI intelligent voice assistant PHP voice interaction system construction PHP calls AI intelligent voice assistant PHP voice interaction system construction Jul 25, 2025 pm 08:45 PM

User voice input is captured and sent to the PHP backend through the MediaRecorder API of the front-end JavaScript; 2. PHP saves the audio as a temporary file and calls STTAPI (such as Google or Baidu voice recognition) to convert it into text; 3. PHP sends the text to an AI service (such as OpenAIGPT) to obtain intelligent reply; 4. PHP then calls TTSAPI (such as Baidu or Google voice synthesis) to convert the reply to a voice file; 5. PHP streams the voice file back to the front-end to play, completing interaction. The entire process is dominated by PHP to ensure seamless connection between all links.

How to use PHP to build social sharing functions PHP sharing interface integration practice How to use PHP to build social sharing functions PHP sharing interface integration practice Jul 25, 2025 pm 08:51 PM

The core method of building social sharing functions in PHP is to dynamically generate sharing links that meet the requirements of each platform. 1. First get the current page or specified URL and article information; 2. Use urlencode to encode the parameters; 3. Splice and generate sharing links according to the protocols of each platform; 4. Display links on the front end for users to click and share; 5. Dynamically generate OG tags on the page to optimize sharing content display; 6. Be sure to escape user input to prevent XSS attacks. This method does not require complex authentication, has low maintenance costs, and is suitable for most content sharing needs.

How to use PHP combined with AI to achieve text error correction PHP syntax detection and optimization How to use PHP combined with AI to achieve text error correction PHP syntax detection and optimization Jul 25, 2025 pm 08:57 PM

To realize text error correction and syntax optimization with AI, you need to follow the following steps: 1. Select a suitable AI model or API, such as Baidu, Tencent API or open source NLP library; 2. Call the API through PHP's curl or Guzzle and process the return results; 3. Display error correction information in the application and allow users to choose whether to adopt it; 4. Use php-l and PHP_CodeSniffer for syntax detection and code optimization; 5. Continuously collect feedback and update the model or rules to improve the effect. When choosing AIAPI, focus on evaluating accuracy, response speed, price and support for PHP. Code optimization should follow PSR specifications, use cache reasonably, avoid circular queries, review code regularly, and use X

PHP creates a blog comment system to monetize PHP comment review and anti-brush strategy PHP creates a blog comment system to monetize PHP comment review and anti-brush strategy Jul 25, 2025 pm 08:27 PM

1. Maximizing the commercial value of the comment system requires combining native advertising precise delivery, user paid value-added services (such as uploading pictures, top-up comments), influence incentive mechanism based on comment quality, and compliance anonymous data insight monetization; 2. The audit strategy should adopt a combination of pre-audit dynamic keyword filtering and user reporting mechanisms, supplemented by comment quality rating to achieve content hierarchical exposure; 3. Anti-brushing requires the construction of multi-layer defense: reCAPTCHAv3 sensorless verification, Honeypot honeypot field recognition robot, IP and timestamp frequency limit prevents watering, and content pattern recognition marks suspicious comments, and continuously iterate to deal with attacks.

How to use PHP to combine AI to generate image. PHP automatically generates art works How to use PHP to combine AI to generate image. PHP automatically generates art works Jul 25, 2025 pm 07:21 PM

PHP does not directly perform AI image processing, but integrates through APIs, because it is good at web development rather than computing-intensive tasks. API integration can achieve professional division of labor, reduce costs, and improve efficiency; 2. Integrating key technologies include using Guzzle or cURL to send HTTP requests, JSON data encoding and decoding, API key security authentication, asynchronous queue processing time-consuming tasks, robust error handling and retry mechanism, image storage and display; 3. Common challenges include API cost out of control, uncontrollable generation results, poor user experience, security risks and difficult data management. The response strategies are setting user quotas and caches, providing propt guidance and multi-picture selection, asynchronous notifications and progress prompts, key environment variable storage and content audit, and cloud storage.

PHP realizes commodity inventory management and monetization PHP inventory synchronization and alarm mechanism PHP realizes commodity inventory management and monetization PHP inventory synchronization and alarm mechanism Jul 25, 2025 pm 08:30 PM

PHP ensures inventory deduction atomicity through database transactions and FORUPDATE row locks to prevent high concurrent overselling; 2. Multi-platform inventory consistency depends on centralized management and event-driven synchronization, combining API/Webhook notifications and message queues to ensure reliable data transmission; 3. The alarm mechanism should set low inventory, zero/negative inventory, unsalable sales, replenishment cycles and abnormal fluctuations strategies in different scenarios, and select DingTalk, SMS or Email Responsible Persons according to the urgency, and the alarm information must be complete and clear to achieve business adaptation and rapid response.

Beyond the LAMP Stack: PHP's Role in Modern Enterprise Architecture Beyond the LAMP Stack: PHP's Role in Modern Enterprise Architecture Jul 27, 2025 am 04:31 AM

PHPisstillrelevantinmodernenterpriseenvironments.1.ModernPHP(7.xand8.x)offersperformancegains,stricttyping,JITcompilation,andmodernsyntax,makingitsuitableforlarge-scaleapplications.2.PHPintegrateseffectivelyinhybridarchitectures,servingasanAPIgateway

PHP integrated AI speech recognition and translator PHP meeting record automatic generation solution PHP integrated AI speech recognition and translator PHP meeting record automatic generation solution Jul 25, 2025 pm 07:06 PM

Select the appropriate AI voice recognition service and integrate PHPSDK; 2. Use PHP to call ffmpeg to convert recordings into API-required formats (such as wav); 3. Upload files to cloud storage and call API asynchronous recognition; 4. Analyze JSON results and organize text using NLP technology; 5. Generate Word or Markdown documents to complete the automation of meeting records. The entire process needs to ensure data encryption, access control and compliance to ensure privacy and security.

See all articles