Compiling Less CSS for Bootstrap 3 with PHP

11,257

Solution 1

AFAIK http://leafo.net/lessphp/ is not compatible with Boostrap 3 > 3.0.0, see https://github.com/leafo/lessphp/issues/503

http://lessphp.gpeasy.com/ works for me i have successful used it for JBST (https://github.com/bassjobsen/jamedo-bootstrap-start-theme/issues/82) i didn't use the cache function.

Without caching you can call $parser->parseFile() for every file you include, it will compile to one file. array(/var/www/mysite/bootstrap.less' => '/mysite/');. Use an array of array's for multiple files: array(array(/var/www/mysite/bootstrap.less' => '/mysite/'), array(/var/www/mysite/.less' => '/mysite/'));

<?php
$parser = new Less_Parser();
$parser->parseFile( '/var/www/mysite/bootstrap.less', 'http://example.com/mysite/' );
$parser->parseFile( '/var/www/mysite/mainless.css', 'http://example.com/mysite/' );
$css = $parser->getCss();

Less_Cache::Get seems to work for only one file a time.

update As commented by @user697576 Less_Cache::Get() accepts a single file or a list (array of files). A single file will be array like array(/var/www/mysite/bootstrap.less' => '/mysite/');

From the docs:

Use the Less_Cache class to save and reuse the results of compiled less files. This method we check the modified time of each less file (including imported files) and regenerate when changes are found.

I highlight including imported files cause this seems to solve your problem. Merge your files with LESS:

styles.less:

@import "my.less"; 
@import "mainless.css";

And compile styles.less only.

/var/www/mysite/bootstrap.less - Is this the less file to be compiled?

Yes, why not? Make sure the files imported in bootstrap.less are available in the same directory as bootstrap.less, or use $parser->SetImportDirs() to set the right path.

/mysite/ - what is this for??

It setting the right path. If you LESS file contain for example url(image.png) it outputs url( /mysite/image.png). Note Bootstrap use ../ for the path of the glyphicons, this won't be corrected or even worse become /mysite/../. You will have to set this path in LESS: @icon-font-path: "/mysite/fonts/";

/var/www/writable_folder - Is this wherethe css is written to?

Nope after $compiled = file_get_contents( '/var/www/writable_folder/'.$css_file_name ); $compiled contains the (compiled) CSS you have to write this to a file. Or use: $css_file_name = Less_Cache::Get( $to_cache ); in your HTML:

    <link rel="stylesheet" type="text/css" href="/writable_folder/<?php echo $css_file_name;?>"> 

update Notice that since Bootstrap 3.2.0. prefixing of the properties in Bootstrap is be done by the autoprefixer in the build process. The preceding means that the Bootstrap Less code code contain property declaration which only use the W3C syntax whilst prefixing is required for cross browser support. Compiling your source with less.php does not run the autoprefixer. See also: https://github.com/oyejorge/less.php/issues/158

Solution 2

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

Share:
11,257
CL22
Author by

CL22

Updated on July 19, 2022

Comments

  • CL22
    CL22 almost 2 years

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

    Both claim to be compatible with Bootstrap (version 3). However I am struggling to get anything going given the steep learning curve of these three facets. In short, I just want to achieve the following:

    Compile multiple .less files together in PHP:

    1. bootstrap.less
    2. my.less

    Compiling a single file in leafo.net/lessphp was easy, I found:

    require_once 'lessc.inc.php'; 
    $less = new lessc;
    $less->checkedCompile("my.less", "mainless.css");
    

    However I am not sure if the library is designed for multiple files. (If so, how could/should it be done?)

    I decided to move on to a different library which explicitly demonstrated how to compile for bootstrap: lessphp.gpeasy.com. However their example snippet has left me scratching my head (taken from here):

    <?php
    require 'less.php/LessCache.php';
    $files = array( '/var/www/mysite/bootstrap.less' => '/mysite/' );
    Less_Cache::$cache_dir = '/var/www/writable_folder';
    $css_file_name = Less_Cache::Get( $to_cache );
    $compiled = file_get_contents( '/var/www/writable_folder/'.$css_file_name );
    

    After looking at their other examples, I realised that $files and $to_cache were a typo: they are meant to be the same variable. But after reading documentation and looking at source I gave up trying to work out if the following strings were accurately conveying their purpose:

    1. /var/www/mysite/bootstrap.less - Is this the less file to be compiled?
    2. /mysite/ - what is this for??
    3. /var/www/writable_folder - Is this where the css is written to?

    Please could someone give me a snippet that would compile bootstrap.less and my.less into css file(s) using PHP?

  • Bass Jobsen
    Bass Jobsen over 10 years
    Unless you need dynamic CSS the is NO advantage! There is nothing wrong with your work flow in my opinion on the other hand i don't think you answer the question.
  • user697576
    user697576 over 10 years
    "Less_Cache::Get seems to work for only one file a time." It actually does work for multiple files
  • SeanOlson
    SeanOlson over 10 years
    You're right, it's not the answer. Dynamic CSS, that would be the reason to put it on the server -- allowing users to skin the app or something like that I suppose. Thanks for the question, it got me thinking.
  • CL22
    CL22 over 10 years
    For me it's just a matter of preference, I use PHP scripts on a localhost WAMP server for various compiling and so on, including for managing a subversion repository. I see it as more portable than having a set of independent workflow tools, also leveraging my familiarity with PHP. Perhaps the creators of the PHP less compilers have other reasons too.
  • CL22
    CL22 over 10 years
    Re: Yes, why not? ... because of two lines in the source of Less_Cache that I found: foreach($less_files as $file_path => $uri_or_less ){ and $parser->ParseFile( $file_path, $uri_or_less ); (line 112 and 120). It seemed like both the key and the value were less sources, rather than a less source and css destination - confused the heck out of me
  • Bass Jobsen
    Bass Jobsen over 10 years
    your input should an array (single file) or an array of array's. Same as for parseFile().
  • Bass Jobsen
    Bass Jobsen over 10 years
    In fact the caching here will be server side, so the cache check will still overhead for your users. It differs from client side compiling.
  • Coded Monkey
    Coded Monkey over 9 years
    To me, it would be an advantage during development for the server to compile the code instead of the browser. Of course there's no theoretical advantage after development, raw files are better in that case.
  • huykon225
    huykon225 almost 7 years
    I am working on Customizer of Wordpress. I am using like this but it's not working: $theme_options = array( 'color_primary' => get_theme_mod( 'color_primary' ), 'color_secondary' => get_theme_mod( 'color_secondary' ), 'color_success' => get_theme_mod( 'color_success' ), 'color_alert' => get_theme_mod( 'color_alert' ) ) $theme_options_data = ' '; foreach ( $theme_options AS $key => $val ) { $theme_options_data .= "@{$key}: {$val};\n"; } $theme_options_data .= file_get_contents( $fileout ); $css = $compiler->compile( $theme_options_data );