返回介绍

18 UI 组件 TextHighlighter 示例

发布于 2025-02-21 12:35:50 字数 1953 浏览 0 评论 0 收藏 0

CTextHighlighter 用来格式化显示代码,目前支持显示的语言有 ABAP, CPP, CSS, DIFF, DTD, HTML, JAVA, JAVASCRIPT, MYSQL, PERL, PHP, PYTHON, RUBY, SQL, XML,显示代码时也可以显示行号,通过 showLineNumbers=TRUE 打开行号显示。

本例显示 PHP 代码,一个带行号,一个不带行号:

    PHP code
 
    <!--?php $this--->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 mode
    defined('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();
    <!--?php $this--->endWidget(); ?>
 
    PHP code with Line Number
 
    <!--?php $this--->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(!empty($_POST[DataModel]))
            {
                $model->attributes=$_POST[DataModel];
 
                if($model->validate()) $success=true;
 
            }
 
            $this->render('index', array(
                    'model' => $model,
 
                    ));
        }
    }
    <!--?php $this--->endWidget(); ?>

通过指定 language 的种类(不区分大小写) 指明需显示代码的种类。

picture18.1

图片 18.1 picture18.1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文