Home > PHP Framework > YII > body text

How to call extension class in php yii

爱喝马黛茶的安东尼
Release: 2019-12-09 13:25:05
Original
2799 people have browsed it

How to call extension class in php yii

Components method

Introduction and definition:

In the config.php file

’components’=>array(
’xyz’=>array(
’class’=>’ext.xyz.XyzClass’,
’property1’=>’value1’,
’property2’=>’value2’,
),
// other component configurations
),
Copy after login

Usage method:

Anywhere, use Yii::app()->xyz, you can directly use the xyz component, and the component loading method is lazilycreated, as long as we are not defined in preload=array(), then That is, it will be instantiated when it is used for the first time, so there is no need to worry that putting it in config.php will affect performance.

PHP Chinese website has a large number of free Yii introductory tutorials, everyone is welcome to learn!

The above is the detailed content of How to call extension class in php yii. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template