current location:Home > Technical Articles > PHP Framework > YII
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Where to set the time zone in yii2
- In the yii framework, you can directly set the time zone in /protected/config/main.php (Supplement: The same is true for Yii2, add it in common/config/main.php).
- YII 3827 2019-12-30 11:40:50
-
- How to open session in yii2
- To open a session in yii2, you can use Yii::$app->session;. Use $session->set(); to set the session name and session value.
- YII 3457 2019-12-30 11:29:46
-
- How to install plug-ins for yii
- First install the composer plug-in for yii, add the corresponding plug-in in the project root directory: vendor -> composer.json; find the corresponding project in the shell: If it is an ABC project, enter the ABC project and execute: composer update
- YII 2043 2019-12-30 11:10:34
-
- How to obtain ip in yii2.0
- YII obtain IP address command: Yii::app()->request->userHostAddress;. Get the current domain name command: echo Yii::app()->request->hostInfo;.
- YII 3942 2019-12-30 11:03:11
-
- How to use apidoc to generate technical documentation in yii2
- Yii2 must first install the apidoc extension. If the extension is not installed, first install phpdocumentor/reflection-docblock, and then install the following extensions cebe/markdown and yiisoft/yii2-apidoc to generate technical documents.
- YII 3060 2019-12-30 10:53:22
-
- Where is yii2 strong?
- Yii2 is easy to install, uses modern technology, is highly scalable, encourages testing, simplifies security, shortens development time, and is easily tuned for optimal performance. Yii is a pure OOP framework that takes full advantage of some of PHP's more advanced features, including delayed static binding, SPL classes and interfaces, and anonymous functions.
- YII 2385 2019-12-30 10:34:44
-
- How to prevent repeated form submission in yii2
- Yii2 uses csrf to prevent repeated submission of forms. By default, Yii2's csrf verification uses cookies to save token verification. To prevent repeated submission of forms, you must first change this method to session.
- YII 3111 2019-12-30 10:22:06
-
- How to configure yii2
- Configuration is widely used to create new objects or initialize existing objects in Yii. The configuration usually contains the class name of the object to be created and a set of initial values of the properties that will be assigned to the object. The properties here are Yii2 properties. You can also bind event handlers to events on an object, or attach behaviors to the object.
- YII 2449 2019-12-30 10:13:18
-
- How to use gii in yii framework
- First, add 'allowedIPs' => ['*'] to main-local.php in the config file of the Yii framework. Enter index.php?r=gii in the address bar. The gii login interface will open. Enter the password set in the previous step.
- YII 1998 2019-12-30 10:05:56
-
- How to implement rbac in yii2
- Yii2 implements a general hierarchical RBAC and follows the NIST RBAC model. Yii2's permission management implementation supports two carriers: file and db. The core of the db-based implementation is four tables: a table for storing roles or permissions, a table for upper and lower levels of permissions and roles, an allocation table for users and permissions (roles), Rule table
- YII 2098 2019-12-30 09:42:08
-
- How to create applications in yii framework
- The yii framework uses the powerful yiic tool to create applications. Run yiic on the command line, such as: % YiiRoot/framework/yiic webapp WebRoot/testdrive.
- YII 2341 2019-12-30 09:31:22
-
- How to use module in yii2
- Modules are organized into a directory called base path. In this directory, there are subdirectories such as controllers, models, and views, which correspond to controllers, models, views, and other codes respectively, very similar to applications.
- YII 2246 2019-12-30 09:17:22
-
- What projects is the yii framework suitable for?
- Yii is a general web programming framework that can be used to develop various web applications built with PHP. Because of its component-based framework structure and well-designed caching support, it is particularly suitable for developing large-scale applications, such as portals, communities, content management systems (CMS), e-commerce projects, etc.
- YII 2084 2019-12-27 16:25:04
-
- What does yii2.0 framework mean?
- Yii is a high-performance PHP5 web application development framework, and yii2.0 is the 2.0 version of the Yii framework. Because the Yii2.0 version framework is completely rewritten, there are quite a few differences between the 1.1 and 2.0 versions.
- YII 2907 2019-12-27 16:16:15
-
- what is yii filter
- A Yii filter is an object that is executed before or after a controller action is executed. Filters can contain pre-filtering (filtering logic before the action), post-filtering (filtering logic after the action), or both.
- YII 2460 2019-12-27 14:49:58