Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 881 Bytes

readme.md

File metadata and controls

34 lines (23 loc) · 881 Bytes

PhpCssEmbed

PhpCssEmbed embed data uri in css part

Build Status Scrutinizer Code Quality

Usage

Use embed css with a file

<?php
    $pce = new \CssEmbed\CssEmbed();
    echo $pce->embedCss( $css_file );

Or directly with css content

<?php
    $pce = new \CssEmbed\CssEmbed();
    $pce->setRootDir( '/path/to/files' );
    echo $pce->embedString( $css_content );

Unit Tests

phpunit

Thanks

Files structure inspired by Geocoder from William Durand