v0.4.0 documentation
Documentation v0.4.0
lessphp is a compiler that generates CSS from a superset language which
adds a collection of convenient features often seen in other languages. All CSS
is compatible with LESS, so you can start using new features with your existing CSS.
It is designed to be compatible with less.js, and suitable
as a drop in replacement for PHP projects.
Getting Started
The homepage for lessphp can be found at http://http://www.zjjv.com///lessphp/.
You can follow development at the project’s GitHub.
Including lessphp in your project is as simple as dropping the single
include file into your code base and running the appropriate compile method as
described in the .
Installation
lessphp is distributed entirely in a single stand-alone file. Download the
latest version from either the homepage or GitHub.
Development versions can also be downloading from GitHub.
Place lessphp.inc.php
in a location available to your PHP scripts, and
include it. That’s it! you're ready to begin.
The Language
lessphp is very easy to learn because it generally functions how you would
expect it to. If you feel something is challenging or missing, feel free to
open an issue on the bug tracker.
It is also easy to learn because any standards-compliant CSS code is valid LESS
code. You are free to gradually enhance your existing CSS code base with LESS
features without having to worry about rewriting anything.
The following is a description of the new languages features provided by LESS.
Line Comments
Simple but very useful; line comments are started with //
:
LESS
CSS
Variables
Variables are identified with a name that starts with @
. To declare a
variable, you create an appropriately named CSS property and assign it a value:
LESS
CSS
Variable declarations will not appear in the output. Variables can be declared
in the outer most scope of the file, or anywhere else a CSS property may
appear. They can hold any CSS property value.
Variables are only visible for use from their current scope, or any enclosed
scopes.
If you have a string or keyword in a variable, you can reference another
variable by that name by repeating the @
:
LESS
CSS
@@value_name;
Expressions
Expressions let you combine values and variables in meaningful ways. For
example you can add to a color to make it a different shade. Or divide up the
width of your layout logically. You can even concatenate strings.
Use the mathematical operators to evaluate an expression:
LESS
CSS
Parentheses can be used to control the order of evaluation. They can also be
used to force an evaluation for cases where CSS’s syntax makes the expression
ambiguous.
The following property will produce two numbers, instead of doing the
subtraction:
LESS
CSS
To force the subtraction:
LESS
CSS
It is also safe to surround mathematical operators by spaces to ensure that
they are evaluated:
LESS
CSS
Division has a special quirk. There are certain CSS properties that use the /
operator as part of their value’s syntax. Namely, the font shorthand and
border-radius.
Thus, lessphp will ignore any division in these properties unless it is
wrapped in parentheses. For example, no division will take place here:
LESS
CSS
In order to force division we must wrap the expression in parentheses:
LESS
CSS
If you want to write a literal /
expression without dividing in another
property (or a variable), you can use :
LESS
CSS
Nested Blocks
By nesting blocks we can build up a chain of CSS selectors through scope
instead of repeating them. In addition to reducing repetition, this also helps
logically organize the structure of our CSS.
LESS
CSS
This will produce two blocks, a ol.list li.special
and ol.list li.plain
.
Blocks can be nested as deep as required in order to build a hierarchy of
relationships.
The &
operator can be used in a selector to represent its parent’s selector.
If the &
operator is used, then the default action of appending the parent to
the front of the child selector separated by space is not performed.
LESS
CSS
& &
Because the &
operator respects the whitespace around it, we can use it to
control how the child blocks are joined. Consider the differences between the
following:
LESS
CSS
&&&
The &
operator also works with , which produces interesting results:
LESS
CSS
&
Mixins
Any block can be mixed in just by naming it:
LESS
CSS
All properties and child blocks are mixed in.
Mixins can be made parametric, meaning they can take arguments, in order to
enhance their utility. A parametric mixin all by itself is not outputted when
compiled. Its properties will only appear when mixed into another block.
The canonical example is to create a rounded corners mixin that works across
browsers:
LESS
CSS
If you have a mixin that doesn’t have any arguments, but you don’t want it to
show up in the output, give it a blank argument list:
LESS
CSS
If the mixin doesn’t need any arguments, you can leave off the parentheses when
mixing it in, as seen above.
You can also mixin a block that is nested inside other blocks. You can think of
the outer block as a way of making a scope for your mixins. You just list the
names of the mixins separated by spaces, which describes the path to the mixin
you want to include. Optionally you can separate them by >
.
LESS
CSS
Mixin Arguments
When declaring a mixin you can specify default values for each argument. Any
argument left out will be given the default value specified. Here’s the
syntax:
LESS
CSS
, , ,
Additionally, you can also call a mixin using the argument names, this is
useful if you want to replace a specific argument while having all the others
take the default regardless of what position the argument appears in. The
syntax looks something like this:
,
You can also combine the ordered arguments with the named ones:
,
Mixin arguments can be delimited with either a ,
or ;
, but only one can be
active at once. This means that each argument is separated by either ,
or
;
. By default ,
is the delimiter, in all the above examples we used a ,
.
A problem arises though, sometimes CSS value lists are made up with commas. In
order to be able to pass a comma separated list literal we need to use ;
as
the delimiter. (You don’t need to worry about this if your list is stored in a
variable)
If a ;
appears anywhere in the argument list, then it will be used as the
argument delimiter, and all commas we be used as part of the argument values.
Here’s a basic example:
LESS
CSS
, , ,
, ,
If we only want to pass a single comma separated value we still need to use
;
, to do this we stick it on the end as demonstrated above.
@arguments
Variable
Within an mixin there is a special variable named @arguments
that contains
all the arguments passed to the mixin along with any remaining arguments that
have default values. The value of the variable has all the values separated by
spaces.
This useful for quickly assigning all the arguments:
LESS
CSS
, ,
In addition to the arguments passed to the mixin, @arguments
will also include
remaining default values assigned by the mixin:
LESS
CSS
, , ,
Pattern Matching
When you mix in a mixin, all the available mixins of that name in the current
scope are checked to see if they match based on what was passed to the mixin
and how it was declared.
The simplest case is matching by number of arguments. Only the mixins that
match the number of arguments passed in are used.
LESS
CSS
, ,
Whether an argument has default values is also taken into account when matching
based on number of arguments:
LESS
CSS
, , ,
Additionally, a vararg value can be used to further control how things are
matched. A mixin’s argument list can optionally end in the special argument
named ...
. The ...
may match any number of arguments, including 0.
LESS
CSS
..., ...,
If you want to capture the values that get captured by the vararg you can
give it a variable name by putting it directly before the ...
. This variable
must be the last argument defined. It’s value is just like the special
, a space separated list.
LESS
CSS
, ,
Another way of controlling whether a mixin matches is by specifying a value in
place of an argument name when declaring the mixin:
LESS
CSS
, , , ,
Notice that two of the three mixins were matched. The mixin with a matching
first argument, and the generic mixin that matches two arguments. It’s common
to use @_
as the name of a variable we intend to not use. It has no special
meaning to LESS, just to the reader of the code.
Guards
Another way of restricting when a mixin is mixed in is by using guards. A guard
is a special expression that is associated with a mixin declaration that is
evaluated during the mixin process. It must evaluate to true before the mixin
can be used.
We use the when
keyword to begin describing a list of guard expressions.
Here’s a simple example:
LESS
CSS
=
Only the div
’s mixin will match in this case, because the guard expression
requires that @arg
is equal to hello
.
We can include many different guard expressions by separating them by commas.
Only one of them needs to match to trigger the mixin:
LESS
CSS
, = = , , ,
Instead of a comma, we can use and
keyword to make it so all of the guards
must match in order to trigger the mixin. and
has higher precedence than the
comma.
LESS
CSS
, = = , ,
Commas and and
s can be mixed and matched.
You can also negate a guard expression by using not
in from of the parentheses:
LESS
CSS
=
The =
operator is used to check equality between any two values. For numbers
the following comparison operators are also defined:
<
, >
, =<
, >=
There is also a collection of predicate functions that can be used to test the
type of a value.
These are isnumber
, iscolor
, iskeyword
, isstring
, ispixel
,
ispercentage
and isem
.
LESS
CSS
%
!important
If you want to apply the !important
suffix to every property when mixing in a
mixin, just append !important
to the end of the call to the mixin:
LESS
CSS
!
!!
Selector Expressions
Sometimes we want to dynamically generate the selector of a block based on some
variable or expression. We can do this by using selector expressions. Selector
expressions are CSS selectors that are evaluated in the current scope before
being written out.
A simple example is a mixin that dynamically creates a selector named after the
mixin’s argument:
LESS
CSS
@
The string interpolation syntax works inside of selectors, letting you insert varaibles.
Here’s an interesting example adapted from Twitter Bootstrap. A couple advanced
things are going on. We are using along with a recursive
mixin to work like a loop to generate a series of CSS blocks.
LESS
CSS
@
Import
Multiple LESS files can be compiled into a single CSS file by using the
@import
statement. Be careful, the LESS import statement shares syntax with
the CSS import statement. If the file being imported ends in a .less
extension, or no extension, then it is treated as a LESS import. Otherwise it
is left alone and outputted directly:
All of the following lines are valid ways to import the same file:
When importing, the importDir
is searched for files. This can be configured,
see .
A file is only imported once. If you try to include the same file multiple
times all the import statements after the first produce no output.
String Interpolation
String interpolation is a convenient way to insert the value of a variable
right into a string literal. Given some variable named @var_name
, you just
need to write it as @{var_name}
from within the string to have its value
inserted:
LESS
CSS
: ": ";
}
There are two kinds of strings, implicit and explicit strings. Explicit strings
are wrapped by double quotes, "hello I am a string"
, or single quotes 'I am
another string'. Implicit strings only appear when using url()
. The text
between the parentheses is considered a string and thus string interpolation is
possible:
LESS
CSS
my_background.png);
}
String Format Function
The %
function can be used to insert values into strings using a format
string. It works similar to printf
seen in other languages. It has the
same purpose as string interpolation above, but gives explicit control over
the output format.
LESS
CSS
%
The %
function takes as its first argument the format string, following any
number of addition arguments that are inserted in place of the format
directives.
A format directive starts with a %
and is followed by a single character that
is either a
, d
, or s
:
LESS
CSS
,
%a
and %d
format the value the same way: they compile the argument to its
CSS value and insert it directly. When used with a string, the quotes are
included in the output. This typically isn’t what we want, so we have the %s
format directive which strips quotes from strings before inserting them.
The %d
directive functions the same as %a
, but is typically used for numbers
assuming the output format of numbers might change in the future.
String Unquoting
Sometimes you will need to write proprietary CSS syntax that is unable to be
parsed. As a workaround you can place the code into a string and unquote it.
Unquoting is the process of outputting a string without its surrounding quotes.
There are two ways to unquote a string.
The ~
operator in front of a string will unquote that string:
LESS
CSS
=
If you are working with other types, such as variables, there is a built in
function that let’s you unquote any value. It is called e
.
LESS
CSS
Built In Functions
lessphp has a collection of built in functions:
e(str)
— returns a string without the surrounding quotes.
See
mix(color1, color1, percent)
— mixes two colors by percentage where 100%
keeps all of color1
, and 0% keeps all of color2
. Will take into account
the alpha of the colors if it exists. See
.
contrast(color, dark, light)
— if color
has a lightness value greater
than 50% then dark
is returned, otherwise return light
.
extract(list, index)
— returns the index
th item from list
. The list is
1
indexed, meaning the first item’s index is 1, the second is 2, and etc.
This is used to convert a CSS color into the hex format that IE’s filter
method expects when working with an alpha component.
LESS
CSS
, , ,end=
=
PHP Interface
When working with lessphp from PHP, the typical flow is to create a new
instance of lessc
, configure it how you like, then tell it to compile
something using one built in compile methods.
Methods:
Compiling
The compile
method compiles a string of LESS code to CSS.
The compileFile
method reads and compiles a file. It will either return the
result or write it to the path specified by an optional second argument.
The compileChecked
method is like compileFile
, but it only compiles if the output
file doesn’t exist or it’s older than the input file:
See for a description of
the more advanced cachedCompile
method.
Output Formatting
Output formatting controls the indentation of the output CSS. Besides the
default formatter, two additional ones are included and it’s also easy to make
your own.
To use a formatter, the method setFormatter
is used. Just
pass the name of the formatter:
In this example, the compressed
formatter is used. The formatters are:
To revert to the default formatter, call setFormatter
with a value of null
.
Custom Formatter
The easiest way to customize the formatter is to create your own instance of an
existing formatter and alter its public properties before passing it off to
lessphp. The setFormatter
method can also take an instance of a
formatter.
Each of the formatter names corresponds to a class with lessc_formatter_
prepended in front of it. Here the classic formatter is customized to use tabs
instead of spaces:
For more information about what can be configured with the formatter consult
the source code.
Preserving Comments
By default, all comments in the source LESS file are stripped when compiling.
You might want to keep the /* */
comments in the output though. For
example, bundling a license in the file.
Enable or disable comment preservation by calling setPreserveComments
:
Comments are disabled by default because there is additional overhead, and more
often than not they aren’t needed.
Compiling Automatically
Often, you want to only compile a LESS file only if it has been modified since
last compile. This is very important because compiling is performance intensive
and you should avoid a recompile if it possible.
The checkedCompile
compile method will do just that. It will check if the
input file is newer than the output file, or if the output file doesn’t exist
yet, and compile only then.
There’s a problem though. checkedCompile
is very basic, it only checks the
input file’s modification time. It is unaware of any files from @import
.
For this reason we also have cachedCompile
. It’s slightly more complex, but
gives us the ability to check changes to all files including those imported. It
takes one argument, either the name of the file we want to compile, or an
existing cache object. Its return value is an updated cache object.
If we don’t have a cache object, then we call the function with the name of the
file to get the initial cache object. If we do have a cache object, then we
call the function with it. In both cases, an updated cache object is returned.
The cache object keeps track of all the files that must be checked in order to
determine if a rebuild is required.
The cache object is a plain PHP array
. It stores the last time it compiled in
$cache["updated"]
and output of the compile in $cache["compiled"]
.
Here we demonstrate creating an new cache object, then using it to see if we
have a recompiled version available to be written:
In order for the system to fully work, we must save cache object between
requests. Because it’s a plain PHP array
, it’s sufficient to
serialize
it and save it the string somewhere
like a file or in persistent memory.
An example with saving cache object to a file:
cachedCompile
method takes an optional second argument, $force
. Passing in
true will cause the input to always be recompiled.
Error Handling
All of the compile methods will throw an Exception
if the parsing fails or
there is a compile time error. Compile time errors include things like passing
incorrectly typed values for functions that expect specific things, like the
color manipulation functions.
Setting Variables From PHP
Before compiling any code you can set initial LESS variables from PHP. The
setVariables
method lets us do this. It takes an associative array of names
to values. The values must be strings, and will be parsed into correct CSS
values.
If you need to unset a variable, the unsetVariable
method is available. It
takes the name of the variable to unset.
Be aware that the value of the variable is a string containing a CSS value. So
if you want to pass a LESS string in, you're going to need two sets of quotes.
One for PHP and one for LESS.
Import Directory
When running the @import
directive, an array of directories called the import
search path is searched through to find the file being asked for.
By default, when using compile
, the import search path just contains ""
,
which is equivalent to the current directory of the script. If compileFile
is
used, then the directory of the file being compiled is used as the starting
import search path.
Two methods are available for configuring the search path.
setImportDir
will overwrite the search path with its argument. If the value
isn’t an array it will be converted to one.
In this example, @import "colors";
will look for either
assets/less/colors.less
or assets/bootstrap/colors.less
in that order:
addImportDir
will append a single path to the import search path instead of
overwriting the whole thing.
Custom Functions
lessphp has a simple extension interface where you can implement user
functions that will be exposed in LESS code during the compile. They can be a
little tricky though because you need to work with the lessphp type system.
The two methods we are interested in are registerFunction
and
unregisterFunction
. registerFunction
takes two arguments, a name and a
callable value. unregisterFunction
just takes the name of an existing
function to remove.
Here’s an example that adds a function called double
that doubles any numeric
argument:
The second argument to registerFunction
is any callable value that is
understood by call_user_func
.
If we are using PHP 5.3 or above then we are free to pass a function literal
like so:
Now let’s talk about the double
function itself.
Although a little verbose, the implementation gives us some insight on the type
system. All values in lessphp are stored in an array where the 0th element
is a string representing the type, and the other elements make up the
associated data for that value.
The best way to get an understanding of the system is to register is dummy
function which does a var_dump
on the argument. Try passing the function
different values from LESS and see what the results are.
The return value of the registered function must also be a lessphp type,
but if it is a string or numeric value, it will automatically be coerced into
an appropriate typed value. In our example, we reconstruct the value with our
modifications while making sure that we preserve the original type.
The instance of lessphp itself is sent to the registered function as the
second argument in addition to the arguments array.
Command Line Interface
lessphp comes with a command line script written in PHP that can be used to
invoke the compiler from the terminal. On Linux and OSX, all you need to do is
place plessc
and lessc.inc.php
somewhere in your PATH (or you can run it in
the current directory as well). On windows you'll need a copy of php.exe
to
run the file. To compile a file, input.less
to CSS, run:
$ plessc input.less
To write to a file, redirect standard out:
$ plessc input.less > output.css
To compile code directly on the command line:
$ plessc -r "@color: red; body { color: @color; }"
To watch a file for changes, and compile it as needed, use the -w
flag:
$ plessc -w input-file output-file
Errors from watch mode are written to standard out.
License
Copyright © 2012 Leaf Corcoran, http://http://www.zjjv.com///lessphp
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
“Software”), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Also under GPL3 if required, see LICENSE
file