书栈网 · BookStack 本次搜索耗时 0.020 秒,为您找到 889 个相关结果.
  • Tutorial - First Application

    627 2019-09-21 《Slim 3 Document》
    First Application Walkthrough Getting Set Up Installing Slim Framework Create The Application Run Your Application With PHP’s Webserver Run Your Application With Apache or nginx...
  • 9.3. CSRF 保护

    564 2019-09-21 《Slim 3 中文文档》
    CSRF 保护 安装 用法 提取 CSRF token 的名称和值 CSRF 保护 Edit This Page Slim 3 使用独立可选的 PHP 组件 slimphp/Slim-Csrf 来保护应用程序免遭 CSRF(跨站请求伪造)。本组件为每个请求生成一个唯一 token ,验证来源于客户端 HTML 表单产生的 POST 请求。...
  • 9.2. HTTP 缓存

    509 2019-09-21 《Slim 3 中文文档》
    HTTP 缓存 安装 用法 ETag Expires Last-Modified HTTP 缓存 Edit This Page Slim 3 使用 slimphp/Slim-HttpCache 这款独立的 PHP 组件作为可选的 HTTP 缓存工具。可以使用这个组件创建并返回包含 Cache , Expires , ETag , 和 ...
  • Uploading Files using POST forms

    1284 2019-09-21 《Slim 3 Document》
    Uploading files using POST forms See also Uploading files using POST forms Files that are uploaded using forms in POST requests can be retrieved with thegetUploadedFiles met...
  • Content Length

    Content Length Middleware Usage Content Length Middleware The Content Length Middleware will automatically append a Content-Length header to the response. This is to replace ...
  • 0.1. 安装

    723 2019-09-21 《Slim 3 中文文档》
    安装 系统要求 如何安装 Slim 如何安装 Composer 通过 Composer 镜像安装 composer 局部安装 安装 系统要求 支持 URL 重写的 Web 服务器 PHP 5.5.0 或者更新版本 如何安装 Slim 我们推荐你使用 Composer 。这个依赖管理器来安装 Slim 框架。在你的项目根目录中,...
  • Body

    399 2019-09-21 《Slim 2 Document》
    Body Body The HTTP response returned to the client will have a body. The HTTP body is the actual content of the HTTP responsedelivered to the client. You can use the Slim appli...
  • 8.3. 检索当前路由

    630 2019-09-21 《Slim 3 中文文档》
    检索当前路由 检索当前路由 如果你需要在应用程序中获取当前的路由,你所需要做但就是,调用 HTTP 请求类的带有 'route' 参数的 getAttribute 方法,它将返回当前的路由,这个路由是 Slim\Route 类的实例。class. 可以使用 getName() 获取路由的名称,或者使用 getMethods() 获取此路由支...
  • 2.2. 中间件

    775 2019-09-21 《Slim 3 中文文档》
    中间件 什么是中间件? 中间件是如何工作的? 如何编写中间件? 闭包中间件示例。 可调用类的中间件示例。 如何添加中间件? 应用程序中间件 路由中间件 Group Middleware 中间件 你可以在你的 Slim 应用之前(before) 和 之后(after) 运行代码来处理你认为合适的请求和响应对象。这就叫做中间件。为什么要...
  • OPTIONS Routes

    405 2019-09-21 《Slim 2 Document》
    OPTIONS Method Override OPTIONS Use the Slim application’s options() method to map a callback function to a resource URI that is requested withthe HTTP OPTIONS method. <? ph...