xlerr/yii2-widget-code-editor

此包已被废弃且不再维护。未建议替代包。

代码编辑器

此包尚未发布版本,且信息较少。


README

演示

demo.png

启动服务

php -S 127.0.0.1:9991 -t examples

使用浏览器访问 http://127.0.0.1:9991

使用方法

use xlerr\CodeEditor\CodeEditor;

echo CodeEditor::widget([
    'name'          => 'example',
    'value'         => file_get_contents(__FILE__),
    'clientOptions' => [
        'mode' => CodeEditor::MODE_PHP,
        'minLines' => 10,
        'maxLines' => 20,
    ],
]);