Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图将一个 sass 变量存储在一个 php 变量中,问题是两者都用前面的 $ 符号声明,因此混淆了 php parser 。像这样的一些事情:
$color = "$brandColor:#".$_POST["value"].";";
输出是:
注意:未定义变量:第 12 行 C:\xampp\htdocs\sassy\function.php 中的brandColor
尝试这个
$color = '$brandColor:#'.$_POST["value"].';';
尝试使用单引号 ' 而不是双引号 "