小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

利用 PHP 快速建立一個 Web 服務(wù)器

 代碼小伙兒 2021-02-14

從 PHP 5.4.0 起, CLI SAPI 提供了一個內(nèi)置的 Web 服務(wù)器。我們可以通過這個內(nèi)置的 Web 服務(wù)器很方便的搭建一個本地開發(fā)環(huán)境。

  • 啟動 Web 服務(wù)器

默認(rèn)情況下,URI 請求會被發(fā)送到 PHP 所在的的工作目錄進(jìn)行處理。

$ cd /tmp/wordpress-install $ php -S localhost:8000 PHP 7.1.16 Development Server started at Mon Jun  4 16:48:42 2018 Listening on http://localhost:8000 Document root is /private/tmp/wordpress-install Press Ctrl-C to quit.

如果請求未指定執(zhí)行 PHP 文件,則默認(rèn)執(zhí)行目錄內(nèi)的 index.php 或者 index.html。如果這兩個文件都不存在,服務(wù)器會則返回 404 錯誤。

接著通過瀏覽器打開 http://localhost:8000/ 就可訪問對應(yīng)的 Web 程序,在終端窗口會輸出類似以下的訪問日志:

[Mon Jun  4 16:50:55 2018] ::1:54854 [302]: / [Mon Jun  4 16:50:55 2018] ::1:54855 [200]: /wp-admin/setup-config.php [Mon Jun  4 16:50:55 2018] ::1:54858 [200]: /wp-includes/css/buttons.min.css?ver=4.9.4 [Mon Jun  4 16:50:55 2018] ::1:54860 [200]: /wp-includes/js/jquery/jquery.js?ver=1.12.4 [Mon Jun  4 16:50:55 2018] ::1:54859 [200]: /wp-admin/css/install.min.css?ver=4.9.4 [Mon Jun  4 16:50:55 2018] ::1:54861 [200]: /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1 [Mon Jun  4 16:50:55 2018] ::1:54862 [200]: /wp-admin/js/language-chooser.min.js?ver=4.9.4 [Mon Jun  4 16:50:56 2018] ::1:54863 [200]: /wp-admin/images/wordpress-logo.svg?ver=20131107 [Mon Jun  4 16:50:57 2018] ::1:54864 [404]: /favicon.ico - No such file or directory
  • 啟動時指定根目錄

如果要自定義啟動根目錄,你可以使用 -t 參數(shù)來自定義不同的目錄。

$ cd /tmp/wordpress-install $ php -S localhost:8000 -t wp-admin/ PHP 7.1.16 Development Server started at Mon Jun  4 16:53:55 2018 Listening on http://localhost:8000 Document root is /private/tmp/wordpress-install/wp-admin Press Ctrl-C to quit. [Mon Jun  4 16:54:04 2018] ::1:54912 [302]: /
  • 使用路由腳本

默認(rèn)情況下,PHP 建立的 Web 服務(wù)器會由 index.php 接收所有請求參數(shù)。如果要讓指定的 PHP 文件來處理請求,可以在啟動這個 Web 服務(wù)器時直接指定要處理請求的文件名。這個文件會作為一個路由腳本,意味著每次請求都會先執(zhí)行這個腳本。(通常將此文件命名為 router.php)

下面我們來看一個例子,請求圖片直接顯示圖片,請求 HTML 則顯示 “Welcome to PHP”。

$ vim router.php  <?php // router.php if (preg_match('/\.(?:png|jpg|jpeg|gif)$/', $_SERVER["REQUEST_URI"])) return false;    // 直接返回請求的文件 else { echo "<p>Welcome to PHP</p>"; } ?>

執(zhí)行后,訪問 HTML 文件就會在終端窗口輸出對應(yīng)的 HTML 代碼。

$ php -S localhost:8000 router.php PHP 7.1.16 Development Server started at Mon Jun  4 17:00:19 2018 Listening on http://localhost:8000 Document root is /private/tmp/wordpress-install Press Ctrl-C to quit.  $ curl http://localhost:8000/index.html <p>Welcome to PHP</p>%

接下來,我們在看看訪問圖片。訪問圖片后就會在終端窗口輸出類似以下的訪問日志:

[Mon Jun  4 17:00:39 2018] ::1:55008 [200]: /wp-content/themes/twentyseventeen/assets/images/coffee.jpg [Mon Jun  4 17:00:57 2018] ::1:55034 [200]: /wp-content/themes/twentyseventeen/assets/images/espresso.jpg [Mon Jun  4 17:01:08 2018] ::1:55035 [200]: /wp-content/themes/twentyseventeen/assets/images/header.jpg [Mon Jun  4 17:01:16 2018] ::1:55037 [200]: /wp-content/themes/twentyseventeen/assets/images/sandwich.jpg

今日思想

不能忍受生命中注定要忍受的事情,就是軟弱和愚蠢的表現(xiàn)。

—— 勃朗特

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多