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 Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- How to add prefix to table in yii2
- How to prefix a table in yii2: first find and open the database configuration related files; then set the table prefix through the statement "'tablePrefix'=>'colin_'", which means that the table prefix has been set to "colin_".
- YII 3055 2020-07-21 12:01:33
-
- Solve the problem of being unable to receive emails sent by yii2
- The solution to the failure to receive emails sent by yii2: first find and open the configuration file code; then change the code "'useFileTransport' => true" to "'useFileTransport' => false,"; finally save the changes.
- YII 3478 2020-07-21 11:54:06
-
- What is Yii in yii2
- Yii in yii2 is a framework core class, and the lowercase yii in yii2 is the namespace path; Yii has two main versions, namely 2.0 and 1.1, and the latest stable version of yii is the yii2 version.
- YII 3694 2020-07-21 11:49:22
-
- What are the differences between yii2.0 and laravel?
- The differences between yii2.0 and laravel are: 1. Under the trend of complete separation of front and back ends, the coupling of yii2's front and back ends is heavier than that of laravel; 2. yii will not over-design the code for a certain design pattern, while laravel is a bit Over-designed; 3. The laravel community is relatively active and rich in resources.
- YII 2953 2020-07-21 11:34:18
-
- How to print sql in yii2
- The method of printing sql in yii2: first query the structure through the statement "Article::find()->joinWith('articleClass');"; then call the createComment and getSql methods; finally print it out through "var_dump".
- YII 3693 2020-07-21 10:40:34
-
- What should I do if I get an error when calling a stored procedure in Yii?
- The solution to the error when yii calls the stored procedure: first check the exceptions thrown after the "MYPROC" statement is called; then according to the information prompt, add the statement "SET NOCOUNT ON;" to the stored procedure.
- YII 4122 2020-07-21 10:36:02
-
- How to display debugging information in yii
- How to display debugging information in yii: first add the statement "defined('YII_DEBUG') or define('YII_DEBUG',true);" to the entry file; then turn on the page display mode; and finally configure the database.
- YII 3138 2020-07-21 10:31:50
-
- What projects is the Yii framework suitable for developing?
- Yii is a general web programming framework that can develop any type of web application. One of the advantages of this framework is that it has a very good and powerful caching component, so it is more suitable for developing high-traffic applications, such as portals, forums, content management systems, etc. E-commerce systems and so on.
- YII 2316 2020-07-20 17:45:51
-
- Does the Yii framework use a template engine?
- The Yii framework does not use a template engine. Yii still uses original PHP as the template syntax. The framework is a high-performance component-based PHP framework for developing large-scale Web applications. It is written in strict OOP and provides the requirements for Web application development. almost all functions.
- YII 2383 2020-07-20 17:34:29
-
- How to block error prompts in Yii
- How to block error prompts in yii: first open the entry file "index.php"; then add "error_reporting (0);"; and finally comment "defined('YII_DEBUG') or define('YII_DEBUG',true);" .
- YII 3294 2020-07-20 11:14:01
-
- How to solve the problem that the yii2 virtual machine cannot open gii
- The yii2 virtual machine cannot open gii because the default Gii under Linux can only be accessed through "127.0.0.1". The solution is to add your own IP in "conf/main-local.php".
- YII 3069 2020-07-20 11:09:46
-
- What is the reason why yii2 responds too slowly?
- The reason why yii2 responds too slowly is that when php5.3 or above encounters localhost, it will consider whether it is ipv4 or ipv6, which will lead to a long response time. The solution is to change "localhost" to "127.0.0.1 "That's it.
- YII 3560 2020-07-20 11:05:59
-
- How to set constants in yii1.0
- The method of setting constants in yii1.0: first create a new "constants.php"; then define the constants through the method "define('CL', 'https://www.baidu.com/');"; then introduce the constants into the system; Finally, just call the system constants anywhere in the system.
- YII 2803 2020-07-20 10:59:50
-
- Solution to garbled code problem in yii2 console
- The solution to the garbled code in yii2 console: first find and open the corresponding script file; then modify the code statement to "$content = iconv("utf-8","gb2312//IGNORE",$content);"; finally save the modification. Can.
- YII 2749 2020-07-20 10:53:44
-
- What should I do if yii2 hasone reports an error?
- The solution to the yii2 hasone error: first open the corresponding file according to the documentation; then modify the statement to "function getUser(){return $this->hasOne(User::className...)}".
- YII 2169 2020-07-20 10:46:57