gpt4 book ai didi

javascript - 将变量的值存储在文本文件中

转载 作者:行者123 更新时间:2023-11-28 07:18:24 25 4
gpt4 key购买 nike

我创建了一个简单的机制来获取一个人的名字和姓氏(这当然是非常基本的代码)。但是我想将变量的值写入文本文件。我使用了一些 php,但它似乎不起作用:

<?php $handle = fopen("log.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>

因此,我想知道是否有任何代码可以用来将此信息放入文本文件中?感谢您的帮助。

初始代码:

<head>
<script>

function getDetails()
{
var firstName = document.getElementById("firstName");
var nameElement = document.getElementById("lastName");
var theName = firstName.value;
var theLastName = lastName.value;
document.getElementById("someDiv").innerHTML += theName += theLastName;


}
</script>
</head>

<html>

<div id="someDiv">
Details:
</div>

<br><br>

<input id="firstName" type="text">
<input id="lastName" type="text">
<input type="button" value="Go!" onClick="getDetails();">

<br>
</html>

不过我更喜欢 JavaScript。

最佳答案

要通过 php 写入文件,您可以使用 file_put_content()功能。

这是一个简单的代码示例:

// The file where to write
$file = 'db.txt';
// The content
$file_content = $your_variable;
// Write the content
file_put_contents($file, $file_content);

您还可以将内容附加到文件中:

// The file where to write
$file = 'db.txt';
// Old content
$file_content = file_get_contents($file);
// Old + new content
$file_content .= $your_variable;
// Write the content
file_put_contents($file, $file_content);

您还可以向文件附加 file_put_contents 标志:

// The file where to write
$file = 'db.txt';
// New content
$file_content = $your_variable;
// Write the content
file_put_contents($file, $file_content, FILE_APPEND | LOCK_EX);
// FILE_APPEND: used to append the new contents at the end of the file
// LOCK_EX : used to avoid another user to write on the same file at the same time

关于javascript - 将变量的值存储在文本文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30573243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com