<?php$file_path = "/etc/ntp.conf";$file_content = file_get_contents($file_path);echo $file_content;?> 不用echo 也能将文件内容填充到文本框中
时间: 2024-02-23 12:59:13 浏览: 113
php下载文件file_get_contents php input
5星 · 资源好评率100%
是的,可以使用`file_get_contents()`函数读取文件内容并将其赋值给文本框的`value`属性。以下是示例代码:
```html
<textarea name="file_content"><?php $file_path = "/etc/ntp.conf"; ?></textarea>
<script>document.getElementsByName("file_content")[0].value = "<?php echo file_get_contents($file_path); ?>";</script>
```
这段代码将`/etc/ntp.conf`文件的内容填充到名为`file_content`的文本框中。注意,`file_get_contents()`函数返回的是字符串,所以需要将其用双引号括起来,以便在JavaScript代码中正确地赋值给文本框的`value`属性。
阅读全文