首页 > 开发 > PHP > 正文

PHP动态输出JavaScript代码实例

2024-05-04 22:39:16
字体:
来源:转载
供稿:网友

直接上代码:

$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;
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表