所以我有一个CSS 文件,我通过PHP CSSTidy使用以下设置运行它。
require_once './application/helpers/csstidy/class.csstidy.php';
$css = new csstidy();
$css->set_cfg('remove_last_;',TRUE);
$css->set_cfg('compress_colors',TRUE);
$css->set_cfg('template', 'highest');
$css->parse(strip_tags($content));
$content = $css->print->plain();
它似乎有效,但我收到两次这样的通知:
Severity: Notice --> Uninitialized string offset: -1 /application/helpers/csstidy/class.csstidy.php 1035
Severity: Notice --> Uninitialized string offset: -1 /application/helpers/csstidy/class.csstidy.php 1035
这是哪条线。
我不知道为什么会发生这种情况,CSS 是有效的......有什么想法吗?我不想不必要地使通知/警告静音。
有任何想法吗?我错过了什么吗?
如果您错过了它,这是指向 CSS 文件的链接。