Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently using a modified CSS Cacheer as an alternative but its syntax is somewhat vague and adoption is, well, abysmally low... Documentation is hard to come by as well.

I'm looking to switch to SASS as it has a bigger user base than CSS Cacheer and better documentation. I am aware of phpHaml but it doesn't have support for SASS yet.

Any recommendation on a SASS parser for PHP? Preferably it should support SassScript.

share|improve this question

9 Answers

up vote 20 down vote accepted

Try this one: PhamlP

share|improve this answer
4  
Its hopelessly broken and doesn't work as you'd expect in a lot of cases (as of this writing). – CpILL May 19 '11 at 13:40
2  
See this bug report I made with a basic test suite: code.google.com/p/phamlp/issues/detail?id=99 – CpILL May 19 '11 at 14:00
3  
Phamlp has been forked many times on github. One of the more active projects right now seems to be this one: github.com/richthegeek/phpsass – chrisjlee Mar 15 '12 at 6:31

Sass 3 (beta at the time of writing this) supports any language or framework. You can now run Sass independently in Watch mode.

CD to your project folder in your terminal and put Sass into Watch mode:

sass --watch sass:stylesheets

Sass will now listen to the sass files within the sass folder for changes. When a Sass file is saved, Sass will generate a new version of the corresponding CSS file in the stylesheets folder.

I highly suggest this route. The reason I suggest doing this versus PhamlP or any other language-specific port of Sass (specifically Sass, not Haml) is that you are able to work with current stable/beta/edge releases of Sass as you'd like. As new features become available in Sass (like the new SCSS superset syntax), you get access to them by upgrading your Haml/Sass gem, not waiting for the developer of your language-specific Sass interpreter to port the new version.

share|improve this answer
13  
Except it requires you do deploy Ruby to all your servers. That is definitely not an option for me. – Andrew Moore Apr 15 '10 at 18:11
49  
no, only on your development environment. Sass renders the static CSS for you, you upload the static CSS. I can't find a compelling reason to compile Sass on-the-fly in production unless you're being fancy. – ltackett Apr 15 '10 at 19:01
seriously this answer should be bumped up to 1st or second place. I only discovered this answer only after somebody posted the link to this answer even though i previously fave'd the question months ago. – kimsia Dec 9 '12 at 1:05

Take a look at PHPSass which is a port of PHamlP up-to-date with the v3.1.1.5 specification of SASS:

http://www.phpsass.com/ or https://github.com/richthegeek/phpsass

There's also a Wordpress plugin based on PHPSass https://github.com/sanchothefat/wp-sass and a Drupal module http://drupal.org/project/sassy

PHPSass does not rely on Ruby.

share|improve this answer

If you don't mind using SCSS syntax, then I've written a compiler: http://leafo.net/scssphp/

It's very up to date, and backed by a full set of tests. I'm also working on making a Compass package for use with it.

It's got good documentation too: http://leafo.net/scssphp/docs/

share|improve this answer

Not specifically for SASS, but there for Leaner CSS (LESS) there is a class for parsing and processing LESS files in PHP.

share|improve this answer

I'm using CSS Crush and includes caching, compressor, etc.! http://the-echoplex.net/csscrush/

share|improve this answer

I've created a css preprocessor written in php. You can check it here: https://github.com/oscarotero/stylecow

share|improve this answer
Is StyleCow a port of LESS OR SASS/SCSS or is it your own rules and syntax you came up with? – Jakobud Mar 12 '12 at 22:35
It is not a less/sass/scss port. It is a css2php parser that can manipulate the styles using multiple plugins available (or create your own plugins). You can create your own rules :) – oscarotero Jun 12 '12 at 22:28

active for of phamIp is http://phpsass.com/

share|improve this answer

Recently saw PHPSass!

From their website:

What is PHPSass?

PHPSass is a PHP compiler for SASS, a popular CSS pre-processor language.It is a fork of PHamlP that has been under active development since August 2011.It is up-to-date with the v3.1.1.5 specification of SASS, and is tracking v3.2 development actively.

share|improve this answer

protected by 3nigma Mar 22 at 20:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.