Compiling Less CSS for Bootstrap 3 with PHP

前端 未结 3 558
醉话见心
醉话见心 2021-02-06 01:14

There are two LessCSS compilers in PHP that I am aware of:

  • http://leafo.net/lessphp/
  • http://lessphp.gpeasy.com/

Both claim to be compatible

3条回答
  •  北恋
    北恋 (楼主)
    2021-02-06 01:41

    another solution using http://leafo.net/lessphp:

    1: get the css code for your .less files:

    $baseCSS = file_get_contents("style.less");
    
    $baseCSS .= file_get_contents("default.less");//append the second file to the variable
    

    2: compile using:

    $finalCSSCode = $less->compile($baseCSS);
    

    cheers

提交回复
热议问题