4

PHPを使用して作成されたこのようなコードがあります

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

私が他のウェブサイトで参照した限りでは、彼らは fopen() と fwrite() を使用してテキスト ファイルを開いて書き込みました。txt ファイルを作成したくないのですが、php を使用して $script 変数にデータを含む script.js というスクリプト ファイルを作成できますか?

4

2 に答える 2

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);
?>

そうでなければ、あなたが何を求めているのかわかりません。

于 2013-08-30T16:44:05.627 に答える