PHPを使用して作成されたこのようなコードがあります
<?php
$script="$(document).ready(function(){alert('hai');});";
?>
私が他のウェブサイトで参照した限りでは、彼らは fopen() と fwrite() を使用してテキスト ファイルを開いて書き込みました。txt ファイルを作成したくないのですが、php を使用して $script 変数にデータを含む script.js というスクリプト ファイルを作成できますか?
ということですか..
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);
?>
そうでなければ、あなたが何を求めているのかわかりません。