中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在centos7環境中安裝swoole1.9與HttpServer

發布時間:2021-02-25 16:56:24 來源:億速云 閱讀:217 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關怎么在centos7環境中安裝swoole1.9與HttpServer,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

一、下載swoole源碼包

二、編譯安裝

> yum install gcc gcc-c++ kernel-devel make autoconf
> tar xf swoole-src-1.9.6.tar.gz
> cd swoole-src-1.9.6

我的php是安裝在/data/php56下,請自行修改

> /data/php56/bin/phpize
> ./configure
> make && make install

修改php.ini文件添加如下兩行

> vi /data/php56/lib/php.ini

以下路徑請根據自的環境修改

extension_dir = "/data/php56/lib/php/extensions/no-debug-zts-20131226/"
extension=swoole.so

查看擴展是否裝上

> /data/php56/bin/php -m|grep swoole

三、HttpServer的使用

http.php代碼如下:

<?php
$http = new swoole_http_server('0.0.0.0', 8888);
//設置回調函數,當收到請求時,會回調此函數
$http->on('request', function($request, $response) {
  //$request包含了客戶端請求的信息
  var_dump($request);
  //$response服務端響應信息
  var_dump($response);
  //向客戶端發送404狀態碼
  $response->status(404);
  //向客戶端發送hello
  $response->end('hello');
});
//啟動http服務
$http->start();

運行該腳本

> /data/php56/bin/php http.php

1、HttpServer如何處理靜態文件?

一般是分析客戶端發送的請求信息,如果是一個文件,那么讀取并發送給客戶端,如果不是則返回404。

<?php
$http = new swoole_http_server('0.0.0.0', 8888);
//設置回調函數,當收到請求時,會回調此函數
$http->on('request', function($request, $response) {
  $pathInfo = $request->server['path_info'];
  $file = __DIR__ . $pathInfo;
  //獲取文件的MIME
  $fileInfo = finfo_open(FILEINFO_MIME);
  $fileMime = finfo_file($fileInfo, $file);
 
  if(is_file($file)) {
    //這里需要手動設置文件MIME格式
    $response->header('Content-Type', $fileMime);
    $response->sendfile($file);
  } else {
    $response->status(404);
    $response->end('not found');
  }
});
//啟動http服務
$http->start();

我們在http.php同目錄下放上一張1.jpg圖片,然后請求192.168.1.222:8888/1.jpg就可正常訪問。

2、HttpServer如何處理動態php文件?

<?php
$http = new swoole_http_server('0.0.0.0', 8888);
//設置回調函數,當收到請求時,會回調此函數
$http->on('request', function($request, $response) {
  $pathInfo = $request->server['path_info'];
  $file = __DIR__ . $pathInfo;
 
  if(is_file($file)) {
    //判斷文件后綴名
    if(pathinfo($pathInfo)['extension'] == 'php') {
      ob_start();
      include $file;
      $content = ob_get_contents();
      ob_end_clean();
      $response->end($content);
    } else {
      //處理其他文件
    }
  } else {
    $response->status(404);
    $response->end('not found');
  }
});
//啟動http服務
$http->start();

我們在http.php同目錄下創建1.php腳本,然后請求192.168.1.222:8888/1.php就可正常訪問。

3、HttpServer的守護進程化?

只需設置配置參數daemonize為1就可以了。

<?php
$http = new swoole_http_server('0.0.0.0', 8888);
 
//設置進程數量,和守護進程化
$http->set(array(
  'worker_num' => 4,
  'daemonize' => 1,
));
 
//設置回調函數,當收到請求時,會回調此函數
$http->on('request', function($request, $response) {
  $pathInfo = $request->server['path_info'];
  $file = __DIR__ . $pathInfo;
 
  if(is_file($file)) {
    //判斷文件后綴名
    if(pathinfo($pathInfo)['extension'] == 'php') {
      ob_start();
      include $file;
      $content = ob_get_contents();
      ob_end_clean();
      $response->end($content);
    } else {
     
    }
  } else {
    $response->status(404);
    $response->end('not found');
  }
});
//啟動http服務
$http->start();

看完上述內容,你們對怎么在centos7環境中安裝swoole1.9與HttpServer有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万全县| 芦山县| 新河县| 台州市| 抚宁县| 阳西县| 舟曲县| 葫芦岛市| 星座| 玉屏| 长葛市| 筠连县| 读书| 城步| 无极县| 金华市| 双辽市| 青岛市| 南乐县| 利津县| 壤塘县| 玉林市| 海口市| 卫辉市| 双城市| 辛集市| 清镇市| 罗源县| 天峻县| 齐河县| 冀州市| 屏山县| 汾阳市| 邓州市| 麟游县| 昆山市| 白水县| 抚宁县| 涟水县| 怀化市| 来宾市|