php 使用shell_exec('vi /etc/ntp.conf') html通过ajax如何将该文件内容输入到文本框中 的完整代码
时间: 2024-02-25 18:52:37 浏览: 120
解决Cent0S 6.7直接在/etc/resolv.conf文件下修改DNS地址重启不生效问题
5星 · 资源好评率100%
以下是获取`/etc/ntp.conf`文件内容并将其输出到HTML页面上的文本框中的完整代码:
get_file_content.php:
```php
<?php
$content = shell_exec('cat /etc/ntp.conf');
echo $content;
?>
```
index.html:
```html
<!DOCTYPE html>
<html>
<head>
<title>File Content</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<textarea id="file-content"></textarea>
<script>
$(document).ready(function() {
$.ajax({
url: "get_file_content.php",
type: "POST",
dataType: "text",
success: function(data) {
$("#file-content").val(data);
}
});
});
</script>
</body>
</html>
```
在浏览器中打开`index.html`文件,即可在文本框中看到`/etc/ntp.conf`文件的内容。
阅读全文