0
我使用less創建css文件。我使用this插件LESS php不更新css
<?php
require "lessc.inc.php";
$less = new lessc;
$less->setVariables(array(
"base" => "968px"
));
$less->checkedCompile("webform.less", "output.css");
?>
當我第一次編譯此代碼...在webform.less基礎變量被編譯並創建精確的輸出。但是當我編輯基本值並編譯時,它不會更新。我在使用php的少編譯中錯過了什麼嗎?
謝謝..這工作! –