문제

I've installed the Yii bootstrap extension for a Yii project I am working on. When I try to register the bootstrap files I get an error.

This is the code provided:

<?php Yii::app()->bootstrap->register(); ?> 

The error I get is as following:

enter image description here

I hope someone can help me out, I have no idea where to look for.

Thanks a lot for your time.

도움이 되었습니까?

해결책

you should be using:

<?php Yii::app()->bootstrap->register(); ?>

instead of

<?php Yii:app()->bootstrap->register(); ?>

Note the double colon ::

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top