我今天遇到了 file_get_contents() 函数的问题。读取大文件时,通常会删除换行符和制表符。这是我如何使用它的缩小示例。
我希望我不是唯一遇到这个问题的人!:O
感谢您的时间!
<?php
$file_name = "template.html";
$data = array( 'title' => 'Hello, World!',
'content'=> 'Hey stackoverflow!');
$file_contents = file_get_contents($file_name);
foreach($data as $comment_name => $replacement_value){
$search = "<!-- ".strtoupper($comment_name)." -->";
$file_contents = str_replace($search, $replacement_value, $file_contents);
}
echo $file_contents;
?>