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 パーサーが混乱しています。このようなもの:
$color = "$brandColor:#".$_POST["value"].";";
出力は次のとおりです。
注意: 未定義の変数: C:\xampp\htdocs\sassy\function.php の 12 行目の brandColor
これを試して
$color = '$brandColor:#'.$_POST["value"].';';
二重引用符の代わりに単一引用符 ' を使用してみてください "