ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
模板加载css文件 * * * * * ~~~ loadCss($css, $abs) ~~~ ~~~ /** * 模板加载css文件 * @param $css * @param bool|false $abs = false * @return string */ ~~~ * * * * * 例: ~~~ {:loadCss('animate/animate.css',true)} ~~~ => `<link rel="stylesheet" type="text/css" href="http://a.test/static/animate/animate.css" /> ` ## 通常配合公共函数 > 添加css $this->add_css('animate/animate.css'); ~~~ {:loadCss($css,true)} ~~~