CakePHP Cookbook 2.x
Controller layer CakePHP request cycle Benefits Where to Get Help The Official CakePHP website The Cookbook The Bakery The API The Test Cases The IRC channel Official CakePHP Forum Stackoverflow Where to CakePHP application, you’re ready for the real thing. Start your own project and read the rest of the Cookbook and API [https://api.cakephp.org]. If you need help, there are many ways to get the help you need Inc. Last updated on Sep 10, 2023. Created using Sphinx 4.5.0. CakePHP Overview Welcome to the Cookbook, the manual for the CakePHP web application framework that makes developing a piece of cake! This0 码力 | 1096 页 | 958.62 KB | 1 年前3CakePHP Cookbook 2.x
CakePHP Cookbook Documentation Release 2.x Cake Software Foundation Sep 10, 2023 Contents 1 Getting Started 1 Blog Tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . object-oriented programming you’ve done, the better: but fear not if you’re a procedural fan. 1 CakePHP Cookbook Documentation, Release 2.x 4. Finally, you’ll need a basic knowledge of the MVC programming pattern that cache data cannot be written. 4 https://git-scm.com/ 2 Chapter 1. Getting Started CakePHP Cookbook Documentation, Release 2.x Creating the Blog Database Next, let’s set up the underlying database0 码力 | 820 页 | 2.52 MB | 1 年前3CakePHP Cookbook 3.x
features links to oft- used developer tools, screencasts, donation opportunities, and downloads. The Cookbook https://book.cakephp.org This manual should probably be the first place you go to get answers any breaking changes that are in each release. They can be found in the Appendices section of the cookbook. Using CakePHP If you are building your application with CakePHP, the following guidelines explain Request Cycle Just the Start Additional Reading Where to Get Help The Official CakePHP website The Cookbook The Bakery The API The Test Cases The IRC Channel Official CakePHP Forum Stackoverflow Where to0 码力 | 1244 页 | 1.05 MB | 1 年前3CakePHP Cookbook 3.x
CakePHP Cookbook Documentation Release 3.10 Cake Software Foundation Sep 10, 2023 Contents 1 CakePHP at a Glance 1 Conventions Over Configuration . . . . . . . . . . . . . . . . . . . . . . . . our users table we could do: use Cake\ORM\TableRegistry; (continues on next page) 1 CakePHP Cookbook Documentation, Release 3.10 (continued from previous page) // Prior to 3.6 use TableRegistry::get('Users') An example of a user registration controller would be: 2 Chapter 1. CakePHP at a Glance CakePHP Cookbook Documentation, Release 3.10 public function add() { $user = $this->Users->newEntity(); if ($t0 码力 | 967 页 | 2.80 MB | 1 年前3CakePHP Cookbook 4.x
features links to oft- used developer tools, screencasts, donation opportunities, and downloads. The Cookbook https://book.cakephp.org This manual should probably be the first place you go to get answers any breaking changes that are in each release. They can be found in the Appendices section of the cookbook. Using CakePHP If you are building your application with CakePHP, the following guidelines explain Request Cycle Just the Start Additional Reading Where to Get Help The Official CakePHP website The Cookbook The Bakery The API The Test Cases The IRC Channel Official CakePHP Forum Stackoverflow Where to0 码力 | 1249 页 | 1.04 MB | 1 年前3CakePHP Cookbook 4.x
CakePHP Cookbook Documentation Release 4.x Cake Software Foundation Dec 07, 2023 Contents 1 CakePHP at a Glance 1 Conventions Over Configuration . . . . . . . . . . . . . . . . . . . . . . . . . table we could do: use Cake\ORM\Locator\LocatorAwareTrait; (continues on next page) 1 CakePHP Cookbook Documentation, Release 4.x (continued from previous page) $users = $this->getTableLocator()->get('Users'); An example of a user registration controller would be: 2 Chapter 1. CakePHP at a Glance CakePHP Cookbook Documentation, Release 4.x public function add() { $user = $this->Users->newEmptyEntity(); if0 码力 | 967 页 | 2.88 MB | 1 年前3CakePHP Cookbook Documentation 5.x
features links to oft- used developer tools, screencasts, donation opportunities, and downloads. The Cookbook https://book.cakephp.org This manual should probably be the first place you go to get answers any breaking changes that are in each release. They can be found in the Appendices section of the cookbook. Using CakePHP If you are building your application with CakePHP, the following guidelines explain Request Cycle Just the Start Additional Reading Where to Get Help The Official CakePHP website The Cookbook The Bakery The API The Test Cases The IRC Channel Official CakePHP Forum Stackoverflow Where to0 码力 | 1080 页 | 939.39 KB | 1 年前3CakePHP Cookbook Documentation 5.x
CakePHP Cookbook Documentation Release 5.x Cake Software Foundation Dec 26, 2023 Contents 1 CakePHP at a Glance 1 Conventions Over Configuration . . . . . . . . . . . . . . . . . . . . . . . . . table we could do: use Cake\ORM\Locator\LocatorAwareTrait; (continues on next page) 1 CakePHP Cookbook Documentation, Release 5.x (continued from previous page) $users = $this->getTableLocator()->get('Users'); An example of a user registration controller would be: 2 Chapter 1. CakePHP at a Glance CakePHP Cookbook Documentation, Release 5.x public function add() { $user = $this->Users->newEmptyEntity(); if0 码力 | 848 页 | 2.53 MB | 1 年前3peewee Documentation Release 2.0.2
believing, I will show some side-by-side comparisons. Let’s pretend we’re using the models from the cookbook, good ol’ user and tweet: class User(Model): username = CharField() class Tweet(Model): user = parameters. If you’re feeling froggy and want to get coding, you might want to check out: • the cookbook, which contains many practical examples • the example app documentation, which shows how to build lives. 1.4 Peewee Cookbook Below are outlined some of the ways to perform typical database-related tasks with peewee. Examples will use the following models: 1.4. Peewee Cookbook 7 peewee Documentation0 码力 | 65 页 | 315.33 KB | 1 年前3peewee Documentation Release 0.9.7
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.3 Peewee Cookbook . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.4 Example setup.py test Feel free to check out the Example app which ships with the project. 1.3 Peewee Cookbook Below are outlined some of the ways to perform typical database-related tasks with peewee. Examples database = psql_db class Blog(PostgresqlModel): creator = peewee.CharField() # etc, etc 1.3. Peewee Cookbook 5 peewee Documentation, Release 0.9.7 Using with MySQL Point models at an instance of MySQLDatabase0 码力 | 53 页 | 347.03 KB | 1 年前3
共 190 条
- 1
- 2
- 3
- 4
- 5
- 6
- 19