Laravel 3.2 Documentationclassy framework for PHP web development. Freeing you from spaghetti code, Laravel helps you create wonderful applications using simple, expressive syntax. Development should be a creative experience that emphasizes flexibility and expressiveness. Users new to Laravel will enjoy the same ease of development that is found in the most popular and lightweight PHP frameworks. More experienced users will update and mold the application over time as is needed and its expressiveness will allow you and your team to develop code that is both concise and easily read. What Makes Laravel Different? There are0 码力 | 139 页 | 1.13 MB | 1 年前3
Learning LaravelLaravel Installer 102 Via Composer Create-Project 103 Setup 103 Server Requirements 103 Local Development Server 104 Hello World Example (Basic) and with using a view 104 Hello World Example (Basic) Taylor Otwell as a free open-source PHP web framework, Laravel is meant to ease and accelerate the development process of web applications with a great taste for simplicity. It follows the model–view–controller well as the PSR-2 coding standard, and the PSR-4 autoloading standard. Running a Test Driven Development (TDD) in Laravel is fun and easy to implement. Hosted on GitHub and available at https://github0 码力 | 216 页 | 1.58 MB | 1 年前3
Laravel 5.0 Documentation
From <= 4.1.25 v. Upgrading To 4.1 From 4.0 iii. Contribution Guide i. Bug Reports ii. Core Development Discussion iii. Which Branch? iv. Security Vulnerabilities v. Coding Style 3. Setup i. Installation Basic Usage iii. Embedding Inline Attachments iv. Queueing Mail v. Mail & Local Development xvi. Package Development i. Introduction ii. Views iii. Translations iv. Configuration v. Publishing File Introduction ii. Usage iii. Calling Commands Outside Of CLI iv. Scheduling Artisan Commands ii. Development i. Introduction ii. Building A Command iii. Registering Commands A GitBook version of Laravel0 码力 | 242 页 | 1.44 MB | 1 年前3
The Laravel Handbook
diregarded by developers, but it has some unique features that make it a great language for Web Development and Laravel figured out how to take advantage of the best features of PHP. On Twitter I can only (same for composer -v ): 6 Now you can go into folder on your computer that you reserve for development. I have a dev folder in my home directory, for example. In there, run: composer create-project Environment variables in .env can be changed depending on the deployment, for example locally in development you can have debug enabled, while on the production server you don’t want that. Some options0 码力 | 111 页 | 14.25 MB | 1 年前3
Laravel 5.6 中文文档方法会生成一个时间戳最靠前的 UUID,通过诸如 MySQL 的数据库来索引,更简单,也更高效。两个方法都会返回 Ramsey\Uuid\Uuid 对象: use Illuminate\Support\Str; return (string) Str::uuid(); return (string) Str::orderedUuid(); Collision 默认的 laravel/laravel Blade::withoutDoubleEncoding 方法: Support\Facades\Blade; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { 方法: Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Bootstrap0 码力 | 377 页 | 14.56 MB | 1 年前3
《Slides Dev Web》 01. Cours devweb
? – Automatisation du déploiement (R. Emourgeon4) ? – Vos présentations ? Vos propositions ? • Support : ghpages5 (source6), partage fichiers : teams7 Projets • Faire pour apprendre • Les rôles dans io/slides-devweb/ 6https://github.com/HE-Arc/slides-devweb/tree/master/src 7https://teams.microsoft.com/l/team/19%3ahGPvEcXl8HCohGre1MLq7AQ4qPWNkY_JqMTTPMPLM- I1%40thread.tacv2/conversations?groupId=cadc33cc- makeuseof.com/tag/best-websites-internet/ 15https://github.com/HE-Arc/ 16https://teams.microsoft.com/l/team/19%3ahGPvEcXl8HCohGre1MLq7AQ4qPWNkY_JqMTTPMPLM- I1%40thread.tacv2/conversations?groupId=cadc33cc-0 码力 | 7 页 | 129.56 KB | 1 年前3
Laravel 6.0 中文文档中,该业务逻辑可以被提取到任务中间件中,从而 将你的任务 handle 方法从频率限制中解放出来: Support\Facades\Redis; 本文档由学院君提供 学院君致力于提供优质 Laravel 中文学习资源:https://xueyuanjun.com 6 class RateLimited 本文档由学院君提供 学院君致力于提供优质 Laravel 中文学习资源:https://xueyuanjun.com 8 use App\LogEntry; use Illuminate\Support\LazyCollection; LazyCollection::make(function () { $handle = fopen('log.txt', 'r'); while (($line table($table, $as = null, $conn ection = null) cursor 方法 影响级别:低 cursor 方法现在返回的 是 Illuminate\Support\LazyCollection 实例而不 是 Generator,LazyCollection 可以像生成器一样迭代: $users = App\User::cursor(); foreach0 码力 | 1442 页 | 14.66 MB | 1 年前3
Laravel 5.3 中文文档版本高于 5.3.4: Support\Facades\Auth; use App\Http\Controllers\Controller; class ProjectController extends Controller key'); // } 声明:控制器 session 部分由网友 AC1982(微信号)提供翻译支持。 数据库 集合 查询构建器现在返回 Illuminate\Support\Collection 实例而不是原生数组,以便保持和 Eloquent 返回结果类型一致。 如果你不想要迁移查询构建器结果到 Collection 实例,可以在查询构建器的 get 方法后调用 ficationServiceProvider。 你 还 需 要 在 配 置 文 件 config/app.php 的 aliases 数 组 中 注 册 门 面 Illuminate\Support\Facades\Notification。 最 后 , 你 可 以 在 User 模 型 或 其 它 你 希 望 接 收 通 知 的 模 型 中 使 用 Illuminate\Notifications\Notifiable0 码力 | 691 页 | 9.37 MB | 1 年前3
Laravel 5.1 中文文档ry 实现上的 macro 方法。 比如,在一个服务提供者的 boot 方法中: Support\ServiceProvider; use Illuminate\Contracts\Routing\ResponseFactory; class ResponseMacroServiceProvider 目录,我们可以按照自己的喜好组织其位置,例如可以创建一个 App\Http\ViewComposers 目录: Support\ServiceProvider; class ComposerServiceProvider extends ServiceProvider { /** * 在容器中注册绑定 56 下面的例子创建了一个@datetime($var)指令: Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Perform0 码力 | 307 页 | 3.46 MB | 1 年前3
《Slides Dev Web》 06. HTTP & AJAX
obligatoire • HTTP 2.01 (2015) – Binaire, multiplexage connexions, compression entêtes, push, … – Supporté par presque tous2 les navigateurs, une majorité de serveurs • HTTP 3.03 (2019) – UDP, correction org/web/20100916110710/http://depressedpress.com/Content/Development/JavaScript/Articl es/GIFAsPipe/Index.cfm 10https://www.w3.org/TR/XMLHttpRequest/ 4 • Supporté par la majorité des navigateurs • Alternative0 码力 | 11 页 | 91.09 KB | 1 年前3
共 15 条
- 1
- 2













