如何用 file_put_contents 解析成 txt 文件
how to parse into txt file with file_put_contents
我正在尝试使用 file_put_contents
解析 txt 文件中的 space 表单输入字段,但我没有使用 htmlentities
解析成功。
<?php
if($_SERVER['REQUEST_METHOD'] == 'POST') {
if( isset($_POST['translation']) ) {
$translation = htmlentities($_POST['translation']);
$translation_input = $translation.PHP_EOL;
$translationfile = 'data/translations.txt';
file_put_contents($translationfile, $translation_input);
}
}
?>
<form action="<?php $_SERVER['PHP_SELF']; ?>" method="POST" role="form">
<input class="form-control" name="translation" type="text" value="" />
<button type="submit" name="submit" class="btn btn-primary w-100">UPDATE/TRANSLATE</button>
</form>
例如,如果我首先在输入中键入 space,然后在文本 test
之后
我的 txt 文件如下所示:
test
应该是
test
我怎样才能做到这一点?
如果只是空格,可以直接替换成str_replace
我正在尝试使用 file_put_contents
解析 txt 文件中的 space 表单输入字段,但我没有使用 htmlentities
解析成功。
<?php
if($_SERVER['REQUEST_METHOD'] == 'POST') {
if( isset($_POST['translation']) ) {
$translation = htmlentities($_POST['translation']);
$translation_input = $translation.PHP_EOL;
$translationfile = 'data/translations.txt';
file_put_contents($translationfile, $translation_input);
}
}
?>
<form action="<?php $_SERVER['PHP_SELF']; ?>" method="POST" role="form">
<input class="form-control" name="translation" type="text" value="" />
<button type="submit" name="submit" class="btn btn-primary w-100">UPDATE/TRANSLATE</button>
</form>
例如,如果我首先在输入中键入 space,然后在文本 test
之后
我的 txt 文件如下所示:
test
应该是
test
我怎样才能做到这一点?
如果只是空格,可以直接替换成str_replace