Ei kuvausta

sunhao fe08a6fbcc 初始 5 vuotta sitten
..
examples fe08a6fbcc 初始 5 vuotta sitten
src fe08a6fbcc 初始 5 vuotta sitten
tests fe08a6fbcc 初始 5 vuotta sitten
.gitignore fe08a6fbcc 初始 5 vuotta sitten
.travis.yml fe08a6fbcc 初始 5 vuotta sitten
LICENSE fe08a6fbcc 初始 5 vuotta sitten
README.md fe08a6fbcc 初始 5 vuotta sitten
build.xml fe08a6fbcc 初始 5 vuotta sitten
composer.json fe08a6fbcc 初始 5 vuotta sitten
phpunit.xml fe08a6fbcc 初始 5 vuotta sitten

README.md

PHP Console Highlighter

Highlight PHP code in console (terminal).

Example

Example

Install

Just create a composer.json file and run the php composer.phar install command to install it:

{
    "require-dev": {
        "jakub-onderka/php-console-highlighter": "0.*"
    }
}

Usage

<?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->getWholeFile($fileContent);