base}',css:'{$url->css}',js:'{$url->js}',img:'{$url->img}',current:window.location};";$expire = 604800;header ( '"/>
PHP头条
热点:

PHP动态输出JavaScript代码实例


直接上代码:

$url = $this->getConfig ()->url ();
$content = "var url={ base:'{$url->base}',css:'{$url->css}',js:'{$url->js}',img:'{$url->img}',current:window.location};";
$expire = 604800;
header ( 'Content-type: application/x-javascript' );
header ( 'Cache-Control: max-age=' . $expire );
header ( 'Accept-Ranges: bytes' );
header ( 'Content-Length: ' . strlen ( $content ) );
echo $content;

www.phpzy.comtrue/php/27207.htmlTechArticlePHP动态输出JavaScript代码实例 直接上代码: $url = $this->getConfig ()->url ();$content = "var url={ base:'{$url->base}',css:'{$url->css}',js:'{$url->js}',img:'{$url->img}',current:window.location};";$expire = 604800;header ( '...

相关文章

PHP之友评论

今天推荐