grenhaz / yii2-highlight
Yii2 Highlight 包装器
1.0.0
2018-03-17 13:02 UTC
Requires
- yiisoft/yii2: ~2.0.6
This package is not auto-updated.
Last update: 2024-09-29 06:31:02 UTC
README
安装
安装此扩展的首选方法是通过 composer。
可以运行
php composer.phar require --prefer-dist grenhaz/yii2-highlight
或者将以下内容添加到您的 composer.json 的 require 部分:
"grenhaz/yii2-highlight": "~1.0.0"
to the require section of your composer.json.
基本用法
use yii\helpers\Json; use grenhaz\highlight\HighlightWidget; echo HighlightWidget::widget([ "language" => "json", "code" => Json::encode( Json::decode( $data ), JSON_PRETTY_PRINT ) ]);
