mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-22 11:09:11 -04:00
10 lines
300 B
PHP
10 lines
300 B
PHP
<?php
|
|
use JakubOnderka\PhpConsoleColor\ConsoleColor;
|
|
use JakubOnderka\PhpConsoleHighlighter\Highlighter;
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
$highlighter = new Highlighter(new ConsoleColor());
|
|
|
|
$fileContent = file_get_contents(__FILE__);
|
|
echo $highlighter->getCodeSnippet($fileContent, 3); |