使用php创建JS文件

时间:2013-08-30 16:41:15

标签: php jquery makefile

我有一个使用php

创建的代码
<?php
$script="$(document).ready(function(){alert('hai');});";
?>

据我在其他网站上提到过,他们使用fopen()和fwrite()来打开文本文件并写入其中。我不想创建txt文件。我可以使用php创建一个脚本文件说script.js包含$ script变量中的数据吗?

2 个答案:

答案 0 :(得分:6)

这将创建名为script.js的文件并包含您的JS语句:

$script="$(document).ready(function(){alert('hai');});";
$fileName="script.js";
file_put_contents($fileName, $script);

答案 1 :(得分:1)

你的意思是......

file_put_contents()

http://dk1.php.net/manual/en/function.file-put-contents.php

<?php
$file = 'people.txt';
// Open the file to get existing content
$current = file_get_contents($file);
// Append a new person to the file
$current .= "John Smith\n";
// Write the contents back to the file
file_put_contents($file, $current);
?>

否则我不确定你在问什么。