我有一个使用php
创建的代码<?php
$script="$(document).ready(function(){alert('hai');});";
?>
据我在其他网站上提到过,他们使用fopen()和fwrite()来打开文本文件并写入其中。我不想创建txt文件。我可以使用php创建一个脚本文件说script.js包含$ script变量中的数据吗?
答案 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);
?>
否则我不确定你在问什么。