smartfactory/fshl
最新稳定版本:1.0.0
Composer 安装命令:
composer require smartfactory/fshl
包简介
FSHL is a free, open source, universal, fast syntax highlighter written in PHP.
关键字:
README 文档
README
FSHL is a free, open source, universal, fast syntax highlighter written in PHP. A very fast parser performs syntax highlighting for few languages and produces a HTML output.
FSHL library is a simple, easy to use syntax highlighter. Its API provides only one method that is really need to highlight sources and three auxiliary methods to sets lexer and output mode.
FSHL core is very flexible and it is very easy to add new languages. Feel free to do so and do not forget to share them with the rest of the world.
Installation
composer require "smartfactory/fshl"
Example
<?php $highlighter = new \FSHL\Highlighter(new \FSHL\Output\Html()); $highlighter->setLexer(new \FSHL\Lexer\Php()); echo '<pre>'; echo $highlighter->highlight('<?php echo "Hello world!"; ?>'); echo '</pre>'; ?>
Or
<?php $highlighter = new \FSHL\Highlighter(new \FSHL\Output\Html(), \FSHL\Highlighter::OPTION_TAB_INDENT | \FSHL\Highlighter::OPTION_LINE_COUNTER); echo '<pre>'; echo $highlighter->highlight('<?php echo "Hello world!"; ?>', new \FSHL\Lexer\Php()); echo '</pre>'; ?>
Stylesheet
A nice default stylesheet is located in the style.css file.
Requirements
FSHL22 requires PHP 8.4 or later.
Authors
- Jaroslav Hanslík
- Oleg Schildt
- Juraj 'hvge' Durech
统计信息
- 总下载量: 4
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0
- 更新时间: 2025-11-25