CTextHighlighter는 표시 코드의 형식을 지정하는 데 사용됩니다. 현재 지원되는 표시 언어는 ABAP, CPP, CSS, DIFF, DTD, HTML, JAVA, JAVASCRIPT, MYSQL, PERL, PHP, PYTHON, RUBY, SQL, XML입니다. 코드를 표시할 때 showLineNumbers=TRUE를 통해 줄 번호 표시를 켜면 줄 번호도 표시될 수 있습니다.
이 예는 행 번호가 있는 코드와 행 번호가 없는 PHP 코드를 표시합니다.
PHP code beginWidget('CTextHighlighter',array('language'=>'PHP')); ?> // include Yii bootstrap file//require_once(dirname(__FILE__).'/../../framework/yii.php');$yii='C:/yiiframework/yii.php'; // remove the following line when in production modedefined('YII_DEBUG') or define('YII_DEBUG',true); $config=dirname(__FILE__).'/protected/config/main.php'; // remove the following line when in production mode // defined('YII_DEBUG') or define('YII_DEBUG',true); require_once($yii);Yii::createWebApplication($config)->run();endWidget(); ?> PHP code with Line Number beginWidget('CTextHighlighter',array('language'=>'PHP','showLineNumbers'=>'true')); ?> /*** SiteController is the default controller to handle user requests. */class SiteController extends CController { /*** Index action is the default action in a controller.*/ public function actionIndex(){ $model=new DataModel(); if(!emptyempty($_POST[DataModel])){$model->attributes=$_POST[DataModel]; if($model->validate()) $success=true;} $this->render('index', array('model' => $model,));}}endWidget(); ?>
언어 유형을 지정하여 표시할 코드 유형을 나타냅니다(대소문자 구분 안 함).
위 내용은 PHP 개발 프레임워크 Yii Framework 튜토리얼(18) UI 구성 요소 TextHighlighter 예제의 내용입니다. 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트( www.php.cn)!