Home  >  Article  >  php教程  >  PHP动态输出JavaScript代码实例,phpjavascript

PHP动态输出JavaScript代码实例,phpjavascript

WBOY
WBOYOriginal
2016-06-13 09:14:481034browse

PHP动态输出JavaScript代码实例,phpjavascript

直接上代码:

$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;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn