$file_path = "/etc/ntp.conf"; $file_content = file_get_contents($file_path); echo $file_content; 如何再不使用echo 的情况下 将$file_content的内容传输给html
时间: 2024-02-23 14:02:02 浏览: 48
PHP-CGI进程CPU 100% 与 file_get_contents 函数的关系分析
可以使用输出缓冲区来实现将$file_content的内容传输给html的操作,示例代码如下:
```
$file_path = "/etc/ntp.conf";
$file_content = file_get_contents($file_path);
ob_start();
?>
<textarea id="fileContent" cols="80" rows="30"><?php echo $file_content; ?></textarea>
<?php
$content = ob_get_clean();
echo $content;
```
这样可以把$file_content的内容嵌入到textarea标签中,再将整个页面内容通过echo输出。
阅读全文