从PHP访问Sass变量

时间:2018-03-14 12:51:08

标签: php sass

我有一个_colors.scss文件,其中包含:

$colors: (
  red: #ff0000,
  green: #00ff00,
  blue: #0000ff
);

//much more declarations down here

我真的想从php访问这些变量。所以我需要leafo/scssphp和我们的代码片段:

$compiler = new Compiler();
$result = $compiler->compile(file_get_contents('_colors.scss'));

$result是一个空字符串,有什么意义,但我无法弄清楚如何获取变量。

$compiler->getVariables();

返回一个空数组,所有其他方法都没有接缝来做我以后的事......有什么想法吗?

0 个答案:

没有答案