PHP微型框架slim的安装使用

slim安装和使用初步

最简单粗暴和直接的方法——到github下载zip文件,slim github【 链接】。解压之后把【1】Slim文件夹,【2】.htaccess文件和【3】index.php文件复制到www目录中。若看到以下网页说明slim安装成功。
PHP微型框架slim的安装使用_第1张图片
图2 slim安装成功

4.简单的修改和测试

    Slim提供完善的REST框架,支持GET、POST、PUT和Delete等方法,可以把index.php修改的更简单一些。可从以下代码中可以熟悉Slim的基本框架和使用方法。
[php]  view plain  copy
  1. /** 
  2.  * Step 1: Require the Slim Framework 
  3.  * 
  4.  * If you are not using Composer, you need to require the 
  5.  * Slim Framework and register its PSR-0 autoloader. 
  6.  * 
  7.  * If you are using Composer, you can skip this step. 
  8.  */  
  9. require 'Slim/Slim.php';  
  10.   
  11. \Slim\Slim::registerAutoloader();  
  12.   
  13. /** 
  14.  * Step 2: Instantiate a Slim application 
  15.  * 
  16.  * This example instantiates a Slim application using 
  17.  * its default settings. However, you will usually configure 
  18.  * your Slim application now by passing an associative array 
  19.  * of setting names and values into the application constructor. 
  20.  */  
  21. $app = new \Slim\Slim();  
  22.   
  23. /** 
  24.  * Step 3: Define the Slim application routes 
  25.  * 
  26.  * Here we define several Slim application routes that respond 
  27.  * to appropriate HTTP request methods. In this example, the second 
  28.  * argument for `Slim::get`, `Slim::post`, `Slim::put`, `Slim::patch`, and `Slim::delete` 
  29.  * is an anonymous function. 
  30.  */  
  31.   
  32. // GET route  
  33. $app->get(  
  34.     '/',  
  35.     function () {  
  36.         echo 'Hello Slim';  
  37.     }  
  38. );  
  39.   
  40. // POST route  
  41. $app->post(  
  42.     '/post',  
  43.     function () {  
  44.         echo 'This is a POST route';  
  45.     }  
  46. );  
  47.   
  48. // PUT route  
  49. $app->put(  
  50.     '/put',  
  51.     function () {  
  52.         echo 'This is a PUT route';  
  53.     }  
  54. );  
  55.   
  56. // PATCH route  
  57. $app->patch('/patch'function () {  
  58.     echo 'This is a PATCH route';  
  59. });  
  60.   
  61. // DELETE route  
  62. $app->delete(  
  63.     '/delete',  
  64.     function () {  
  65.         echo 'This is a DELETE route';  
  66.     }  
  67. );  
  68.   
  69. /** 
  70.  * Step 4: Run the Slim application 
  71.  * 
  72.  * This method should be called last. This executes the Slim application 
  73.  * and returns the HTTP response to the HTTP client. 
  74.  */  
  75. $app->run();  
  76.   
  77.     此时再打开浏览器输入localhost将只能看到以下内容,其实浏览器使用get方法,在slim的Get路由中输出了Hello Slim。  
  78. $app->post(  
  79.     '/post',  
  80.     function () {  
  81.         echo 'This is a POST route';  
  82.     }  
  83. );  


在slim中, '/post'为相对路径,该路径可支持变量。 function ()为后续的处理函数。其他HTTP方法也类似。
PHP微型框架slim的安装使用_第2张图片
图3 Slim Get路由
      其他类型的测试方法可借助cURL工具
    【1】测试post
    curl --request POST  http://localhost/post
    【2】测试put方法
    curl --request PUT  http://localhost/p ut
    【3】测试delete
    curl --request DELETE  http://localhost/ delete
    
    【火狐浏览器】
    如果你不喜欢使用curl工具,也可以选择火狐浏览器中的HTTPRequest工具,那么命令操作就成了愉快的GUI操作了。
PHP微型框架slim的安装使用_第3张图片

你可能感兴趣的:(PHP微型框架slim的安装使用)