我有一个_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();
返回一个空数组,所有其他方法都没有接缝来做我以后的事......有什么想法吗?