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 install yii framework?
- How to install the yii framework: 1. Install the Composer tool; 2. Run the composer create-project --prefer-dist yiisoft/yii2-app-basic basic command in a web-accessible folder to install it.
- YII 3410 2019-12-23 18:01:26
-
- What is yii2.0?
- 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 3072 2019-12-23 17:49:32
-
- What are the differences between yii1 and yii2?
- Difference: Yii2 application instances directly use global named variables to access: $app without calling app(). A significant change in the view layer of Yii2 is the introduction of view classes. Yii2 introduces the concept of resource packages, and the way of resource reference changes greatly.
- YII 4565 2019-12-23 17:43:13
-
- What is the folder assets in Yii?
- In Yii, assets are generally folders that store some style files (css), script files (js), picture files (images) and other content in the front and backend, so they can be used with Yii::app()->request-> Use baseUrl in conjunction with (get the project name).
- YII 6084 2019-12-23 17:36:22
-
- How to use widgets of yii framework
- The widgets of the yii framework are basically used in views. In the views, the yii\base\Widget::widget() method can be called to use the widgets. This method initializes the widget using the configuration array and returns the result of the widget being rendered.
- YII 2438 2019-12-23 16:34:32
-
- How to solve Chinese garbled characters in yii framework
- Solution to Chinese garbled characters in the yii framework: 1. It may be caused by the incorrect encoding format when saving the yii file. This can be solved by changing the default encoding format of the editing tool to utf-8. 2. Specify the encoding format as utf-8 when connecting to the database in Yii.
- YII 3010 2019-12-23 16:02:08
-
- Cookie settings are invalid in yii2
- The reason why the cookie setting in yii2 is invalid is that the [die] or [exit] statement is artificially added, resulting in the set [cookies] not being sent to the client. The solution is: when using the [add] method to insert the [cookie] item, the following code cannot have exit or end statements.
- YII 2892 2019-12-18 16:46:00
-
- How to introduce CSS and JS files in Yii2 framework
- Use use at the top of the front view to call the code segment use yii\helpers\Html;; then in the following Html you can call <?=Html::jsFile('@web/js file path')?> like this.
- YII 2585 2019-12-18 14:59:48
-
- How to determine whether the data table exists in the database in Yii
- The method to determine whether the data table exists in the database in Yii is: 1. First, you need to find out all the table names in the database and save the table names into a two-dimensional array; 2. Then further determine whether the table name exists in the database. in a dimensional array.
- YII 2970 2019-12-17 17:10:51
-
- How to set yii2 not to use layout
- The method to set up yii2 not to use layout is: 1. Set the layout attribute member variable in the controller file to [false]; 2. Set the layout attribute member method in the controller file to [false]; 3. Close it in the view file. Just choose a layout.
- YII 3182 2019-12-17 17:01:15
-
- The verification code image is not displayed in yii2
- The reasons and solutions for the verification code image not being displayed in yii2 are: 1. The BOM problem cannot be displayed, just delete the BOM in the PHP code involving the BOM in the file; 2. The output buffer is not cleared, before outputting the image, add [ob_clean] method can clear the output buffer.
- YII 3027 2019-12-17 16:45:51
-
- How to import css and js files into yii2
- The methods for importing css and js files in yii2 are: 1. You can directly import the files on the view page; 2. You can directly write native code to import the files; 3. There is no need to define methods in the resource package manager, you only need to add them to the view page Just import the file directly.
- YII 2890 2019-12-17 16:19:48
-
- What are the sorting methods in yii
- Yii uses the yii\data\Sort object to represent information about the sorting scheme. Sorting methods are: attributeOrders: gives the sorting direction currently set for each attribute. orders: Gives the sorting direction in terms of low-level columns.
- YII 3643 2019-12-17 16:18:54
-
- How to transfer value when yii page jumps
- Methods for passing values in yii page jump: 1. Page jump in the same Controller: $this->render('view page',array('parameter'=>'value'));. 2. Use the $this->redirect method to pass values when jumping to pages in different Controllers.
- YII 2363 2019-12-17 15:40:03
-
- How to reference external files in Yii
- Methods to reference external files in Yii: 1. Introduce the external file path in Yii's ../config/main.php. 2. Use the "Yii::app()->basePath" method in the Yii code to reference external files.
- YII 2729 2019-12-17 15:32:17