| 
<?php
/*************************************************************
 * This script is developed by Arturs Sosins aka ar2rsawseen, http://webcodingeasy.com
 * Feel free to distribute and modify code, but keep reference to its creator
 *
 * CSSfix class can automatically apply vendor prefixes to specified CSS rules.
 * It also applies other fixes, for different CSS browser specifics.
 *
 * For more information, examples and online documentation visit:
 * http://webcodingeasy.com/PHP-classes/Automatically-add-CSS-vendor-prefixes
 **************************************************************/
 
 //declaring class instance
 include("./CSSfix.php");
 $css = new CSSfix();
 
 $css->from_file("./style.css");
 
 echo $css->generate(false);
 
 |