gpt4 book ai didi

javascript - php file_put_contents 在空格后 chop 字符串

转载 作者:行者123 更新时间:2023-12-02 17:52:57 24 4
gpt4 key购买 nike

file_put_contents 似乎 chop 了我的字符串变量。

HTML

<div id="element">
<?php echo file_get_contents("file.txt"); ?>
</div>

JavaScript

function submitData() {
var string = $('textarea[name=string]').val();
$('#element').load("submit.php?var="+string);
$('textarea[name=string]').val("");
var height = $('#element')[0].scrollHeight;
$('#element').animate({
scrollTop: height
}, 1000);
$('textarea[name=string]').focus();
}

PHP

$str = nl2br($_GET['var']);
if(empty($str)) {
$str = "Error: Empty string.";
}
$str .= "<br /><br />";
$delete = $_GET['delete'];
if(isset($delete)) {
file_put_contents("file.txt", "");
echo file_get_contents("file.txt");
} else {
file_put_contents("file.txt", $str.PHP_EOL, FILE_APPEND);
echo file_get_contents("file.txt");
}

结果

如果字符串是“Hello, World!”;我得到以下结果:

Hello,

最佳答案

通过 GET 请求发送内容时,您需要使用 URL 编码数据。请参阅 here 了解如何操作。

关于javascript - php file_put_contents 在空格后 chop 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21198707/

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