Learning LaravelContents About 1 Chapter 1: Getting started with Laravel 2 Remarks 2 Laravel StackOverflow Slack Community 2 Featured Tutorial 2 Contribution Guidelines 2 Contribution Style Guide 2 About Laravel 2 https://riptutorial.com/ 1 Chapter 1: Getting started with Laravel Remarks Laravel StackOverflow Slack Community Coming soon Featured Tutorial Getting Started With Laravel Contribution Guidelines Coming soon soon Contribution Style Guide Coming soon About Laravel Created by Taylor Otwell as a free open-source PHP web framework, Laravel is meant to ease and accelerate the development process of web applications0 码力 | 216 页 | 1.58 MB | 1 年前3
Laravel 3.2 Documentation................................................................................ 3 Laravel's Community ............................................................................................... locations for declarations where appropriate. Laravel's Community Laravel is lucky to be supported by rapidly growing, friendly and enthusiastic community. The Laravel Forumsare a great place to find help and would love to talk to you about it, so don't be a stranger! License Information Laravel is open-sourced software licensed under the MIT License. LARAVEL CHANGE LOG Laravel 3.2.8 Fix double0 码力 | 139 页 | 1.13 MB | 1 年前3
Laravel 5.0 Documentation
command they wished to schedule. However, this is a headache. Your console schedule is no longer in source control, and you must SSH into your server to add the Cron entries. Let's make our lives easier report serves to help yourself and others start on the path of fixing the problem. The Laravel source code is managed on Github, and there are repositories for each of the Laravel projects: Laravel America/Chicago), and sporadically present in the channel at other times. The #laravel-dev IRC channel is open to all. All are welcome to join the channel either to participate or simply observe the discussions0 码力 | 242 页 | 1.44 MB | 1 年前3
《Slides Dev Web》 08 . RSSjournaux : dépêches, bandes dessinées, … • Télévision : jeux, séries • Web : Flux RSS / Atom – 1 source de donnée, plusieurs abonnés – Contenu : news, blogs, podcast, … – Accès unique à plusieurs sources • Notification : activité, mise à jour • Podcasts • Accès unique à des infos de plusieurs sites • Source de contenu • Augmenter le trafic d’un site • Exemples2 et Passerelles3 Agrégateurs • Natifs –Un tout nouveau cours. 4 Générer le flux • Données dynamiques • Source de données identique à celle de l’application • Nécessité de générer le fichier à la volée • Nouveaux0 码力 | 7 页 | 52.98 KB | 1 年前3
《Slides Dev Web》 12. Risques applicatifs
patches rapidement disponibles – nos applications : c’est nous qui en sommes responsables OWASP1 • Open Web Application Security Project 1https://owasp.org/ 1 • Fondation pour améliorer la sécurité des le GUI du navigateur pas toujours suffisant • Ne pas utiliser de lien dont on n’est pas sur de la source (Homograph Attack13, Homo- glyphes14, Unicode Spoofing15) Risques non liés à l’application • IoT Figure 1: top 500 passwords cloud Mots de passe • 30% of users have a password from the top 10’000 (source17) • Our passwords habits revealed18 • xkcd’s password strength19 17https://mojoauth.com/blog/0 码力 | 12 页 | 474.37 KB | 1 年前3
《Slides Dev Web》02. Introduction aux frameworks PHP
net/manual/en/history.php.php 13https://en.wikipedia.org/wiki/PHP 14http://getcomposer.org/ 8 Figure 5: source15 9 (1) Donc, ce ne sont pas Gandalf (sans sa barbe) et Saruman mais bien Sir Tim Berners-Lee /var/www/html $ git clone \ > https://github.com/\ > HE-Arc/php-intro-framework $ cd php-intro-framework $ open http://localhost/php-intro-framework Les exemples suivant travaillent sur le code disponible dans else { // ... include "templates/accueil.html"; } 13 Quel est le problème avec cette solution? (Source de l’image19) Sécurité des templates • Principle of Least Privilege ( polp20 ) • Intégration faite0 码力 | 24 页 | 1.03 MB | 1 年前3
Laravel 6.0 中文文档Gearman Go Grafana InfluxDB MariaDB MinIO MongoDB MySQL 8 Neo4j Oh My Zsh Open Resty 本文档由学院君提供 学院君致力于提供优质 Laravel 中文学习资源:https://xueyuanjun.com 56 PM2 Python RabbitMQ 以用来设置系统 PATH,不同之处在于前者是给系统超级 用户使用,后者是给普通登录用户使用的,此外要 让 ~/.bash_profile 修改后生效,有两种方法,一种是 退出系统重新登录,一种是使用 source ~/.bash_profile 命令。 Windows 在系统的任意位置创建一个批处理文件 homestead.bat: @echo off set cwd=%cd% set ho App\Extensions; class MongoSessionHandler implements SessionHandlerIn terface { public function open($savePath, $sessionName) {} public function close() {} public function read($sessionId) {} public0 码力 | 1442 页 | 14.66 MB | 1 年前3
Laravel 5.6 中文文档都可以用来设置系统 PATH,不同之处在于前者是给系统超级用户使用,后者是给普通登录用户使 用的,此外要让 ~/.bash_profile 修改后生效,有两种方法,一种是退出系统重新登录,一种是使用 source ~/.bash_profile 命令。 Windows 在系统的任意位置创建一个批处理文件 homestead.bat: @echo off set cwd=%cd% set namespace App\Extensions; class MongoHandler implements SessionHandlerInterface { public function open($savePath, $sessionName) {} public function close() {} public function read($sessionId) MongoHandler。 由于这些方法并不是很容易理解,所以我们接下来快速过一遍每一个方法: open 方法用于基于文件的 Session 存储系统,由于 Laravel 已经有了一个 file Session 驱动,所以在该方法中不需要放置任何代码,可以 将其置为空方法。 close 方法和 open 方法一样,也可以被忽略,对大多数驱动而言都用不到该方法。 read 方法应该返回与给定0 码力 | 377 页 | 14.56 MB | 1 年前3
Laravel 5.1 中文文档$user->charge(100); charge 方法接收一个数组作为第二个参数,允许你传递任何你想要传递的底层 Stripe 账单 创建参数: $user->charge(100, [ 'source' => $token, 'receipt_email' => $user->email,]); 如果支付失败 charge 方法将返回 false,这通常表明付款被拒绝: if namespace App\Extensions; class MongoHandler implements SessionHandlerInterface{ public function open($savePath, $sessionName) {} public function close() {} public function read($sessionId) StoreInterface 接口方法那样容易理解,我们接下来快速过一 遍每一个方法: open 方法用于基于文件的 session 存储系统,由于 Laravel 已经有了一个 file session 驱动,所以在该方法中不需要放置任何代码,可以将其置为空方法。 close 方法和 open 方法一样,也可以被忽略,对大多数驱动而言都用不到该方法。 read 方法应该返回与给定$sessionId0 码力 | 307 页 | 3.46 MB | 1 年前3
Laravel 5.2 中文文档$user->charge(100); charge 方法接收一个数组作为第二个参数,允许你传递任何你想要传递的底层 Stripe 账 单创建参数: $user->charge(100, [ 'source' => $token, 'receipt_email' => $user->email,] ); 如果支付失败 charge 方法将返回 false,这通常表明付款被拒绝: namespace App\Extensions; class MongoHandler implements SessionHandlerInterface{ public function open($savePath, $sessionName) {} public function close() {} public function read($sessionId) StoreInterface 接口方法那样容易理解,我们接下来快速过一 遍每一个方法: open 方法用于基于文件的 session 存储系统,由于 Laravel 已经有了一 个 file session 驱动,所以在该方法中不需要放置任何代码,可以将其置为空方 法。 close 方法和 open 方法一样,也可以被忽略,对大多数驱动而言都用不到该方 法。 read 方法应该返回与给定$sessionId0 码力 | 377 页 | 4.56 MB | 1 年前3
共 15 条
- 1
- 2













