书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 889 个相关结果.
  • How to Use

    432 2019-09-21 《Slim 2 Document》
    How to use How to use A callable is assigned to a hook using the Slim application’s hook() method: <? php $app = new \Slim\Slim (); $app -> hook ( 'the.hook.name' , ...
  • PHP Runtime Error

    702 2019-09-21 《Slim 3 Document》
    PHP Error Handler Default PHP Error handler Custom PHP Error handler PHP Error Handler If your Slim Framework application throws aPHP Runtime error (PHP 7+ only),the applica...
  • 404 Not Found

    578 2019-09-21 《Slim 3 Document》
    404 Not Found Handler Default Not Found handler Custom Not Found handler 404 Not Found Handler If your Slim Framework application does not have a route that matches the curre...
  • The Application

    650 2019-09-21 《Slim 3 Document》
    Application Application Configuration Retrieving Settings Updating Settings Slim Default Settings Application The Application, (or Slim\App ) is the entry point to your Sli...
  • Overview

    425 2019-09-21 《Slim 2 Document》
    Overview Overview Each Slim application instance has one response object. The response object is an abstraction of your Slim application’sHTTP response that is returned to the ...
  • Dependency Container

    494 2019-09-21 《Slim 3 Document》
    Dependency Container How to use the container Required services Dependency Container Slim uses a dependency container to prepare, manage, and inject applicationdependencies. ...
  • Routing

    603 2019-09-21 《Slim 3 Document》
    Router How to create routes GET Route POST Route PUT Route DELETE Route OPTIONS Route PATCH Route Any Route Custom Route Route callbacks Writing content to the response C...
  • 0.2. 升级指南

    768 2019-09-21 《Slim 3 中文文档》
    升级指南 新的 PHP 版本要求 新的路由函数签名 获取 _GET 和 _POST 变量 钩子 / Hooks 移除 HTTP 缓存 移除 Stop/Halt 重定向的改变 中间件签名 Middleware Execution Flash Messages Cookies Removal of Crypto New Router R...
  • 500 System Error

    617 2019-09-21 《Slim 2 Document》
    500 Errors Set custom error handler Invoke custom error handler 500 Errors You may use the Slim application’s error() method to specify a custom error handler to be invoked ...
  • How to Write

    459 2019-09-21 《Slim 2 Document》
    How to write How to write Slim application middleware must subclass \Slim\Middleware and implement a public call() method. The call() method does not accept arguments. Middle...