 Laravel 5.0 Documentation
Lifecycle i. Introduction ii. Lifecycle Overview iii. Focus On Service Providers vi. Application Structure i. Introduction ii. The Root Directory iii. The App Directory iv. Namespacing Your Application Laravel 4.2 Laravel 4.1 Laravel 5.0 introduces a fresh application structure to the default Laravel project. This new structure serves as a better foundation for building robust application in Laravel dependencies, even if the route contains other parameters: Release Notes Laravel 5.0 New Folder Structure Contracts Route Cache Route Middleware Controller Method Injection public function createPost(Request0 码力 | 242 页 | 1.44 MB | 1 年前3 Laravel 5.0 Documentation
Lifecycle i. Introduction ii. Lifecycle Overview iii. Focus On Service Providers vi. Application Structure i. Introduction ii. The Root Directory iii. The App Directory iv. Namespacing Your Application Laravel 4.2 Laravel 4.1 Laravel 5.0 introduces a fresh application structure to the default Laravel project. This new structure serves as a better foundation for building robust application in Laravel dependencies, even if the route contains other parameters: Release Notes Laravel 5.0 New Folder Structure Contracts Route Cache Route Middleware Controller Method Injection public function createPost(Request0 码力 | 242 页 | 1.44 MB | 1 年前3
 Learning LaravelRemarks 65 Examples 65 Laravel 5 App on Shared Hosting on Linux Server 65 Chapter 20: Directory Structure 68 Examples 68 Change default app directory 68 Override Application class 68 Calling the new three core-parts of the framework which work https://riptutorial.com/ 2 together: models, views and controllers. Controllers are the main part where most of the work is done. They connect to models to to get, create or update data and display the results on views, which contain the actual HTML structure of the application. Blade Templating Engine Laravel is shipped with a templating engine known as0 码力 | 216 页 | 1.58 MB | 1 年前3 Learning LaravelRemarks 65 Examples 65 Laravel 5 App on Shared Hosting on Linux Server 65 Chapter 20: Directory Structure 68 Examples 68 Change default app directory 68 Override Application class 68 Calling the new three core-parts of the framework which work https://riptutorial.com/ 2 together: models, views and controllers. Controllers are the main part where most of the work is done. They connect to models to to get, create or update data and display the results on views, which contain the actual HTML structure of the application. Blade Templating Engine Laravel is shipped with a templating engine known as0 码力 | 216 页 | 1.58 MB | 1 年前3
 Laravel 3.2 Documentation.............................................................................. 1 Application Structure ............................................................................................... these objects from anywhere in your code without needing to deal with an inflexible monolithic structure.  Migrations are version control for your database schemas and they are directly integrated Application Structure Laravel's directory structure is designed to be familiar to users of other popular PHP frameworks. Web applications of any shape or size can easily be created using this structure similarly0 码力 | 139 页 | 1.13 MB | 1 年前3 Laravel 3.2 Documentation.............................................................................. 1 Application Structure ............................................................................................... these objects from anywhere in your code without needing to deal with an inflexible monolithic structure.  Migrations are version control for your database schemas and they are directly integrated Application Structure Laravel's directory structure is designed to be familiar to users of other popular PHP frameworks. Web applications of any shape or size can easily be created using this structure similarly0 码力 | 139 页 | 1.13 MB | 1 年前3
 The Laravel Handbook
Linux and Windows. Open the newly created project folder in VS Code. This should be the file structure: 8 While you’re here I recommend you install the extensions Laravel Extra Intellisense Laravel display something useful, but let’s do things properly. Here’s a start: we add the proper HTML structure and we wrap the dogs list in an unordered list: 40 is working out of the box: 55 Laravel added a ton of resources to achieve this. Easily days of work for a developer, and it’s battle-tested code which you don’t want to write yourself, as it’s a quite0 码力 | 111 页 | 14.25 MB | 1 年前3 The Laravel Handbook
Linux and Windows. Open the newly created project folder in VS Code. This should be the file structure: 8 While you’re here I recommend you install the extensions Laravel Extra Intellisense Laravel display something useful, but let’s do things properly. Here’s a start: we add the proper HTML structure and we wrap the dogs list in an unordered list: 40 is working out of the box: 55 Laravel added a ton of resources to achieve this. Easily days of work for a developer, and it’s battle-tested code which you don’t want to write yourself, as it’s a quite0 码力 | 111 页 | 14.25 MB | 1 年前3
 Laravel 5.6 中文文档更好地选择,因为 Laravel 的队列进程支持通过优先级指定处理的队列。举个例子,你可以将高优先级的任务委派到 high (高优先级)队列,从而让 它优先执行。 php artisan queue:work --queue=high,default 驱动预备知识 数据库 要使用 database 队列驱动,你需要数据表保存任务信息。要生成创建这些表的迁移,可以运行 Artisan 命令 q ->onQueue('processing'); 指定最大失败次数/超时时间 最大失败次数 指定队列任务最大失败次数的一种实现方式是通过 Artisan 命令 --tries 切换: php artisan queue:work --tries=3 不过,你还可以在任务类自身定义最大失败次数来实现更加细粒度的控制,如果最大失败次数在任务中指定,则其优先级高于命令行指定的数值: work --timeout=30 同样,你也可以在任务类中定义该任务允许运行的最大时长(单位:秒),任务中指定的超时时间优先级也高于命令行定义的数值:0 码力 | 377 页 | 14.56 MB | 1 年前3 Laravel 5.6 中文文档更好地选择,因为 Laravel 的队列进程支持通过优先级指定处理的队列。举个例子,你可以将高优先级的任务委派到 high (高优先级)队列,从而让 它优先执行。 php artisan queue:work --queue=high,default 驱动预备知识 数据库 要使用 database 队列驱动,你需要数据表保存任务信息。要生成创建这些表的迁移,可以运行 Artisan 命令 q ->onQueue('processing'); 指定最大失败次数/超时时间 最大失败次数 指定队列任务最大失败次数的一种实现方式是通过 Artisan 命令 --tries 切换: php artisan queue:work --tries=3 不过,你还可以在任务类自身定义最大失败次数来实现更加细粒度的控制,如果最大失败次数在任务中指定,则其优先级高于命令行指定的数值: work --timeout=30 同样,你也可以在任务类中定义该任务允许运行的最大时长(单位:秒),任务中指定的超时时间优先级也高于命令行定义的数值:0 码力 | 377 页 | 14.56 MB | 1 年前3 Laravel 6.0 中文文档影响级别:中等 在之前版本的 Laravel 中,php artisan queue:work 命令会无限 期重试队列任务,从 Laravel 6.0 开始,该命令默认只会重试队列任 务一次,如果你想要强制任务无限期重试,可以通过 tries=0 选项 进行指定: php artisan queue:work --tries=0 此外,请确保你的应用数据库包含了 failed_jobs 数据表,你可以 个队列将是更好地选择,因为 Laravel 的队列进程支持通过优先级 指定处理的队列。举个例子,你可以将高优先级的任务委派 到 high (高优先级)队列,从而让它优先执行。 php artisan queue:work --queue=high,default 驱动预备知识 数据库 本文档由学院君提供 学院君致力于提供优质 Laravel 中文学习资源:https://xueyuanjun.com 884 'sqs'; } 指定最大失败次数/超时时间 最大失败次数 指定队列任务最大失败次数的一种实现方式是通过 Artisan 命 令 --tries 切换: php artisan queue:work --tries=3 不过,你还可以在任务类自身定义最大失败次数来实现更加细粒度的 控制,如果最大失败次数在任务中指定,则其优先级高于命令行指定 的数值:0 码力 | 1442 页 | 14.66 MB | 1 年前3 Laravel 6.0 中文文档影响级别:中等 在之前版本的 Laravel 中,php artisan queue:work 命令会无限 期重试队列任务,从 Laravel 6.0 开始,该命令默认只会重试队列任 务一次,如果你想要强制任务无限期重试,可以通过 tries=0 选项 进行指定: php artisan queue:work --tries=0 此外,请确保你的应用数据库包含了 failed_jobs 数据表,你可以 个队列将是更好地选择,因为 Laravel 的队列进程支持通过优先级 指定处理的队列。举个例子,你可以将高优先级的任务委派 到 high (高优先级)队列,从而让它优先执行。 php artisan queue:work --queue=high,default 驱动预备知识 数据库 本文档由学院君提供 学院君致力于提供优质 Laravel 中文学习资源:https://xueyuanjun.com 884 'sqs'; } 指定最大失败次数/超时时间 最大失败次数 指定队列任务最大失败次数的一种实现方式是通过 Artisan 命 令 --tries 切换: php artisan queue:work --tries=3 不过,你还可以在任务类自身定义最大失败次数来实现更加细粒度的 控制,如果最大失败次数在任务中指定,则其优先级高于命令行指定 的数值:0 码力 | 1442 页 | 14.66 MB | 1 年前3 《Slides Dev Web》02. Introduction aux frameworks PHP
de sécurité potentielles. Une solution est d’ajouter une couche d’abstraction qui va cacher la structure réelle de notre base de données et offrir une interface orientée objet. Un Object-Relational Mapping Framework PHP Une collection de bibliothèques avec un peu de glue. Un framework web vous propose une structure de base pour construire selon une méthode jugée bonne par ses concepteurs. Il est possible de remplacer0 码力 | 24 页 | 1.03 MB | 1 年前3 《Slides Dev Web》02. Introduction aux frameworks PHP
de sécurité potentielles. Une solution est d’ajouter une couche d’abstraction qui va cacher la structure réelle de notre base de données et offrir une interface orientée objet. Un Object-Relational Mapping Framework PHP Une collection de bibliothèques avec un peu de glue. Un framework web vous propose une structure de base pour construire selon une méthode jugée bonne par ses concepteurs. Il est possible de remplacer0 码力 | 24 页 | 1.03 MB | 1 年前3 《Slides Dev Web》 03. Laravel
unitaires • Extensible par packages8 (bundles) via composer Le Front Controller Architecture MVC • Structure d’une appli web = cycle Requête/Reponse9 • Modèle : Eloquent ORM • Vue : Blade Engine • Contrôleur0 码力 | 8 页 | 224.34 KB | 1 年前3 《Slides Dev Web》 03. Laravel
unitaires • Extensible par packages8 (bundles) via composer Le Front Controller Architecture MVC • Structure d’une appli web = cycle Requête/Reponse9 • Modèle : Eloquent ORM • Vue : Blade Engine • Contrôleur0 码力 | 8 页 | 224.34 KB | 1 年前3 《Slides Dev Web》 09. Services Web
différents aspects des services web – pour déployer un WS : au minimum SOAP + WSDL + UDDI SOAP • Structure d’un message SOAP – Enveloppe, Entête, Corps, Erreurs 3https://upload.wikimedia.org/wikipedia0 码力 | 6 页 | 47.90 KB | 1 年前3 《Slides Dev Web》 09. Services Web
différents aspects des services web – pour déployer un WS : au minimum SOAP + WSDL + UDDI SOAP • Structure d’un message SOAP – Enveloppe, Entête, Corps, Erreurs 3https://upload.wikimedia.org/wikipedia0 码力 | 6 页 | 47.90 KB | 1 年前3 《Slides Dev Web》 12. Risques applicatifs
les requêtes envoyées au SGBD • Obtention d’un résultat non prévu par le développeur • Deviner la structure du code pour l’exploiter • SQL est puissant : UNION, INTO DUMPFILE, … Exemples10 SELECT titre0 码力 | 12 页 | 474.37 KB | 1 年前3共 14 条 《Slides Dev Web》 12. Risques applicatifs
les requêtes envoyées au SGBD • Obtention d’un résultat non prévu par le développeur • Deviner la structure du code pour l’exploiter • SQL est puissant : UNION, INTO DUMPFILE, … Exemples10 SELECT titre0 码力 | 12 页 | 474.37 KB | 1 年前3共 14 条- 1
- 2
 













