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:
-
- How to enable debugging in yii2
- How to enable debugging in yii2: First define YII_DEBUG as true and YII_ENV as true in the web/index.php file; then open the config/web.php file and add your own IP address to allowedIPS.
- YII 9740 2019-11-06 17:45:49
-
- Steps to write api interface in yii2
- 1. Create a separate application; 2. Beautify the route for the new api application; 3. Use gii to generate test modules; 4. Reconfigure the controller; 5. Configure Url rules for Goods; 6. Simulate request operations; 7. Do authorization authentication; 8. Do rate limiting.
- YII 10317 2019-11-06 17:32:00
-
- The difference between yii2 advanced version and normal version
- The difference between the advanced version and the ordinary version of yii2: The advanced version and the basic version are just different in name, and their frameworks are exactly the same; the ordinary version is suitable for developing applications that are independent of front and backends; the advanced version is suitable for developing applications that are divided into front and backends.
- YII 3733 2019-11-06 17:02:58
-
- yii2 close error prompt
- How to turn off the error prompt in yii2: Add the following code "defined('YII_ENABLE_ERROR_HANDLER') or define('YII_ENABLE_ERROR_HANDLER', true);" at the beginning of the php program to turn off the error prompt.
- YII 3910 2019-11-06 16:45:21
-
- How to solve the problem of unsuccessful scheduled tasks in yii2
- Solution to the unsuccessful yii2 scheduled task: The execution fails because the path is wrong. First open the yii script file, and then modify the first line to the path on your server.
- YII 1963 2019-11-06 16:18:58
-
- yii2 How to solve the problem that the data you submitted cannot be verified
- yii2 The data you submitted cannot be verified because of yii's csrf verification. This can be solved by adding "public $enableCsrfValidation = false;" to the controller.
- YII 7812 2019-11-06 16:01:21
-
- yii2 determines whether it is a post submission form
- How yii2 determines whether the form is submitted by post: Use "if(Yii::$app->request->isPost)" to determine. If the condition is true, it was submitted by post.
- YII 2944 2019-11-06 15:49:15
-
- yii2 determines whether the user is logged in
- The method for yii2 to determine whether the user is logged in: use "if(Yii::$app->user->isGuest)". If the condition is true, the user is not logged in. If the condition is not true, the user is logged in.
- YII 4169 2019-11-06 15:44:05
-
- How to reference css in yii framework
- How to reference css in the yii framework: 1. Create a default directory in the assets directory; 2. Create a css file directory in the default directory; 3. Create a php file and create system variables in the shop/protected/config directory; 4. At the entrance The file introduces the system environment file.
- YII 2657 2019-11-06 15:35:35
-
- How to install yii2 tutorial
- Yii2 installation tutorial: 1. Download the Yii framework and open the advanced folder; 2. Copy the advanced project file to the environment root directory and configure the access directory; 3. Add php.exe to the system environment variable.
- YII 2169 2019-11-06 17:52:18
-
- How to check the version of yii
- Methods to check the version of yii: The first way is to echo \Yii::getVersion() directly on the page; the second way is to use the command window. There is a yii file in the project directory and directly execute the file: ./yii.
- YII 7206 2019-11-06 09:47:34
-
- How to bind events in yii
- Yii uses trigger() and on() methods to bind events. Events are triggered by calling the yii\base\Component::trigger() method. This method must pass the event name and an event object to pass parameters to the event handler.
- YII 3151 2019-11-06 09:32:19
-
- What does yii application component mean?
- Yii application components are any objects and can be configured with the yii\base\Application::$components attribute in the application body configuration. Please be careful to register too many application components. Application components are like global variables. Using too many may make testing and maintenance more difficult.
- YII 2831 2019-11-06 09:17:12
-
- Where is the yii add module?
- First create a new modules directory in the root directory, and then add the module directory below this directory. Assuming that we need to add a user module here, we can name the directory user, and then add three directories, models, views, and controllers, under the user directory.
- YII 2873 2019-11-06 09:04:03
-
- What does yii mean?
- Yii is a component-based high-performance PHP framework for developing large-scale web applications; a simple command line tool yiic can quickly create a web application code framework, and developers can add services based on the generated code framework. logic to quickly complete application development.
- YII 18376 2020-10-21 11:05:29