CakePHP Cookbook Documentation 5.xWWW_ROOT Timing Definition Constants TIME_START Chronos Debug Kit Migrations ElasticSearch Appendices 5.x Migration Guide 5.0 Upgrade Guide 5.0 Migration Guide Backwards Compatibility Shimming Forwards PSR-7 Middleware that your application uses. Typically this includes error trapping and routing. 5. If no response is returned from the middleware and the request contains routing information, a controller directory of the current working directory: php composer.phar create-project --prefer-dist cakephp/app:5.* cms If you downloaded and ran the Composer Windows Installer [https://getcomposer.org/Composer-Setup0 码力 | 1080 页 | 939.39 KB | 1 年前3
CakePHP Cookbook Documentation 5.xCakePHP Cookbook Documentation Release 5.x Cake Software Foundation Dec 26, 2023 Contents 1 CakePHP at a Glance 1 Conventions Over Configuration . . . . . . . . . . . . . . . . . . . . . . . . . Reading . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2 Quick Start Guide 15 Content Management Tutorial . . . . . . . . . . . . . . . . . . . . . . . Authorization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75 5 Contributing 81 Documentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .0 码力 | 848 页 | 2.53 MB | 1 年前3
Guzzle PHP v5 Documentation. . . . . . . . . . . . . . . . . . . . . 5 1.2 Quickstart . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 1.2.1 Making a Request . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 1.2.2 Using Responses . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 1.2.3 Query String Parameters Send a request to https://foo.com/root $response = $client->request('GET', '/root'); 1.2. Quickstart 5 Guzzle, Release Don’t feel like reading RFC 3986? Here are some quick examples on how a base_uri is0 码力 | 49 页 | 231.08 KB | 11 月前3
Guzzle PHP v5 Documentationnew Request('GET', $uri); } }; $pool = new Pool($client, $requests(100), [ 'concurrency' => 5, 'fulfilled' => function ($response, $index) { // this is delivered each successful response the allow_redirects request option. Set to true to enable normal redirects with a maximum number of 5 redirects. This is the default setting. Set to false to disable redirects. Pass an associative array Describes the redirect behavior of a request Types bool array Default [ 'max' => 5, 'strict' => false, 'referer' => false, 'protocols' => ['http', 'https']0 码力 | 62 页 | 309.78 KB | 11 月前3
HTML 504.HTML 5 19 décembre 2023 Développement web il3 HTML5 HE-Arc 2023 DGR Exemples • Vue d’ensemble : slides1 Google 2011 ( sources2 ) – Obslolète : quota, web sql : Web Storage, application cache – html5 rocks!5 => web.dev6 – Chrome Experiments7 – MDN8 – html5 demos9 – plus de demos ?10 1https://web.archive.org/web/20140320042652/http://slides.html5rocks.com 2https://github.com/html5rocks/slides com/html5rocks/slides.html5rocks.com 3https://www.soundstep.com/blog/experiments/jsdetection/ 4https://auduno.github.io/clmtrackr/examples/facesubstitution.html 5https://www.html5rocks.com/ 6https://developers.google0 码力 | 3 页 | 29.58 KB | 1 年前3
Laravel 5.6 中文文档optimize。 Blade 本文档由 Laravel 学院提供 Laravel 学院致力于提供优质 Laravel 中文学习资源:http://laravelacademy.org 5 HTML 实体编码 在之前版本的 Laravel 中,Blade 不会对 HTML 实体进行双重编码。这并不是底层 htmlspecialchars 函数的默认行为,而且会在渲染内容或传递内 联 称之为轻量级的开发环境。 Valet 开箱支持但不限于以下软件和工具: Laravel Lumen Bedrock CakePHP 3 Concrete5 Contao Craft Drupal Jigsaw Joomla Katana Kirby Magento 默认情况下,AppServiceProvider 是空的,这里是添加自定义启动和服务容器绑定的最佳位置,当然,对大型应用,你可能希望创建多个服务提供 者,每一个都有着更加细粒度的启动。 注:更多细节,可参考 Laravel 5.x 启动过程分析。 服务容器 简介 Laravel 服务容器是一个用于管理类依赖和执行依赖注入的强大工具。依赖注入听上去很花哨,其实质是通过构造函数或者某些情况下通过 setter0 码力 | 377 页 | 14.56 MB | 1 年前3
Laravel 6.0 中文文档学院君致力于提供优质 Laravel 中文学习资源:https://xueyuanjun.com 5 * * @return void */ public function handle() { Redis::throttle('key')->block(0)->allow(1)->every (5)->then(function () { info('Lock obtained...'); '); // 处理任务... }, function () { // 无法获取到锁... return $this->release(5); }); } 而在 Laravel 6.0 中,该业务逻辑可以被提取到任务中间件中,从而 将你的任务 handle 方法从频率限制中解放出来: block(0)->allow(1)->every(5) ->then(function () use ($job, $next) { // Lock obtained... $next($job); }, function () use ($job) { // Could not obtain lock... $job->release(5); }); } } 本文档由学院君提供0 码力 | 1442 页 | 14.66 MB | 1 年前3
Laravel 5.3 中文文档............................................................................................. 92 5. HTTP 层 ........................................................................................... Echo 提供强大的实时支持;通过 Laravel Passport 实现无痛的 OAuth2 服务器;通过 Laravel Scout 实现全文模型搜索;在 Laravel Elixir 中支持 Webpack;“可邮寄”的对象;明确分离 web 和 api 路由;基于闭包的控制台命令;存储上传文件的辅助函数;支持 POPO 和单动作控制 器;以及优化前端脚手架;等等等等。 通知(Notifications) Updated', (e) => { 本文档由 Laravel 学院(LaravelAcademy.org)提供 Laravel 学院致力于提供优质 Laravel 中文学习资源 5 console.log(e.description); }); 为了订阅到传统频道,Laravel Echo 还使得订阅到提供谁在监听给定频道信息的已存在频道变得0 码力 | 691 页 | 9.37 MB | 1 年前3
Falcon v3.1.1-b3 DocumentationGriffiths et al. Nov 11, 2022 CONTENTS 1 Quick Links 3 2 What People are Saying 5 3 Features 7 4 Who’s Using Falcon? 9 5 Documentation 11 5.1 User Guide . . . . . . . . . . . . . . . . . . . . . . . It basically can’t be wrong.” “What other framework has integrated support for 786 TRY IT NOW ?” 5 Falcon Documentation, Release 3.1.1b3 6 Chapter 2. What People are Saying CHAPTER THREE FEATURES your source code under the terms of the Apache License, Version 2.0, as described above. 12 Chapter 5. Documentation Falcon Documentation, Release 3.1.1b3 5.1.2 Installation PyPy PyPy is the fastest0 码力 | 378 页 | 1.29 MB | 1 年前3
Falcon v3.1.1-b1 DocumentationGriffiths et al. Nov 09, 2022 CONTENTS 1 Quick Links 3 2 What People are Saying 5 3 Features 7 4 Who’s Using Falcon? 9 5 Documentation 11 5.1 User Guide . . . . . . . . . . . . . . . . . . . . . . . It basically can’t be wrong.” “What other framework has integrated support for 786 TRY IT NOW ?” 5 Falcon Documentation, Release 3.1.1b1 6 Chapter 2. What People are Saying CHAPTER THREE FEATURES your source code under the terms of the Apache License, Version 2.0, as described above. 12 Chapter 5. Documentation Falcon Documentation, Release 3.1.1b1 5.1.2 Installation PyPy PyPy is the fastest0 码力 | 378 页 | 1.29 MB | 1 年前3
共 98 条
- 1
- 2
- 3
- 4
- 5
- 6
- 10













