Skip to main content
Back to packages
368 GitHub stars

phikiphp/phiki

View on GitHub

Description

Syntax highlighting powered by TextMate grammars in PHP.

1. Install Phiki

composer require phiki/phiki:^2.0

2. Create a new Phiki instance

use Phiki\Phiki;
 
$phiki = new Phiki();

3. Highlight your code

use Phiki\Grammar\Grammar;
use Phiki\Theme\Theme;
 
$code = file_get_contents('path/to/your/code.php');
$highlighted = $phiki->codeToHtml($code, Grammar::Php, Theme::GithubLight);
 
echo $highlighted;

Recent Courses on Laravel Daily

[NEW] Marketing for Developers in 2026

7 lessons
52 min

Practical Laravel Security: Packages, Secrets, Supply-Chain Attacks

7 lessons
43 min read

Queues in Laravel 13

18 lessons
1 h 12 min read