CakePHP Cookbook 2.x
they’re organized. The best way to experience and learn CakePHP is to sit down and build something. To start off we’ll build a simple blog application. Blog Tutorial Welcome to CakePHP. You’re probably checking webserver to get you up and running: URL Rewriting Now continue to Blog Tutorial - Adding a layer to start building your first CakePHP application. Blog Tutorial - Adding a layer Create a Post Model The Adding Posts Reading from the database and showing us the posts is a great start, but let’s allow for adding new posts. First, start by creating an add() action in the PostsController: class PostsController0 码力 | 1096 页 | 958.62 KB | 1 年前3
CakePHP Cookbook 2.x
they’re organized. The best way to experience and learn CakePHP is to sit down and build something. To start off we’ll build a simple blog application. Blog Tutorial Welcome to CakePHP. You’re probably checking your .htaccess files are actually in the right directories. Some operating systems treat files that start with ‘.’ as hidden and therefore won’t copy them. 3. Make sure your copy of CakePHP comes from the (continues on next page) 6 https://www.microsoft.com/web/downloads/platform.aspx 7 https://www.iis.net/downloads/microsoft/url-rewrite 8 https://www.microsoft.com/en-us/download/details.aspx?id=5747 9 https://www0 码力 | 820 页 | 2.52 MB | 1 年前3
CakePHP Cookbook 3.x
The Controller Layer CakePHP Request Cycle Just the Start Additional Reading Where to Get Help CakePHP Conventions CakePHP Folder Structure Quick Start Guide Content Management Tutorial Getting CakePHP those concepts are implemented in CakePHP. If you are itching to get started on a project, you can start with the tutorial, or dive into the docs. Conventions Over Configuration CakePHP provides a basic echo $row->username; } You may notice that we didn’t have to write any code before we could start working with our data. By using conventions, CakePHP will use standard classes for table and entity0 码力 | 1244 页 | 1.05 MB | 1 年前3
CakePHP Cookbook 3.x
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Just the Start . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2 Quick Start Guide 13 Content Management Tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . those concepts are implemented in CakePHP. If you are itching to get started on a project, you can start with the tutorial, or dive into the docs. Conventions Over Configuration CakePHP provides a basic0 码力 | 967 页 | 2.80 MB | 1 年前3
CakePHP Cookbook Documentation 5.x. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Just the Start . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2 Quick Start Guide 15 Content Management Tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . those concepts are implemented in CakePHP. If you are itching to get started on a project, you can start with the tutorial, or dive into the docs. Conventions Over Configuration CakePHP provides a basic0 码力 | 848 页 | 2.53 MB | 1 年前3
CakePHP Cookbook Documentation 5.xThe Controller Layer CakePHP Request Cycle Just the Start Additional Reading Where to Get Help CakePHP Conventions CakePHP Folder Structure Quick Start Guide Content Management Tutorial Getting CakePHP H CONFIG CORE_PATH DS LOGS RESOURCES ROOT TESTS TMP WWW_ROOT Timing Definition Constants TIME_START Chronos Debug Kit Migrations ElasticSearch Appendices 5.x Migration Guide 5.0 Upgrade Guide 5.0 those concepts are implemented in CakePHP. If you are itching to get started on a project, you can start with the tutorial, or dive into the docs. Conventions Over Configuration CakePHP provides a basic0 码力 | 1080 页 | 939.39 KB | 1 年前3
The PHP Handbook
MySQL. MAMP is a package that provides all of that, and more, and gives you a nice interface to start/stop everything at once. Of course, you can set up each piece on its own if you like, and many tutorials system, but once you’re done with the installation, you will have a “MAMP” application installed. Start that, and you will see a window similar to this: Make sure the PHP version selected is the latest want to use it, but it’s not necessary to follow this handbook. 9 Press the Start button at the top right, this will start the Apache HTTP server, with PHP enabled, and the MySQL database. Go to the0 码力 | 97 页 | 8.78 MB | 1 年前3
CakePHP Cookbook 4.x
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Just the Start . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2 Quick Start Guide 15 Content Management Tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . those concepts are implemented in CakePHP. If you are itching to get started on a project, you can start with the tutorial, or dive into the docs. Conventions Over Configuration CakePHP provides a basic0 码力 | 967 页 | 2.88 MB | 1 年前3
CakePHP Cookbook 4.x
The Controller Layer CakePHP Request Cycle Just the Start Additional Reading Where to Get Help CakePHP Conventions CakePHP Folder Structure Quick Start Guide Content Management Tutorial Getting CakePHP TH CONFIG CORE_PATH DS LOGS RESOURCES ROOT TESTS TMP WWW_ROOT Timing Definition Constants TIME_START SECOND MINUTE HOUR DAY WEEK MONTH YEAR Chronos Debug Kit Migrations ElasticSearch Appendices 4.x those concepts are implemented in CakePHP. If you are itching to get started on a project, you can start with the tutorial, or dive into the docs. Conventions Over Configuration CakePHP provides a basic0 码力 | 1249 页 | 1.04 MB | 1 年前3
Learning Laravelthe directives @continue and @break Property Description @continue Stop the current iteration and start the next one. @break Stop the current loop. Example : @foreach ($users as $user) @continue color: red; } @stop @section('main-content') This is child page! @stop otherpage.blade.php: @extends('parent') @section('styling') .main { color: blue; } @stop @section('main-content') @section('main-content') This is another page! @stop Here you see two example child pages, which each extend the parent. The child pages define a @section, which is inserted in the parent at the appropriate @yield0 码力 | 216 页 | 1.58 MB | 1 年前3
共 81 条
- 1
- 2
- 3
- 4
- 5
- 6
- 9













