PHP file_get_contents()会自动将内容转换为ASCII吗?

时间:2014-10-21 07:46:20

标签: php text file-get-contents

我想说我想知道文本文件的编码, PHP file_get_contents会自动将内容转换为ASCII吗?

<pre>
<?php

$file = file_get_contents('./test.txt', true);

echo $file."<br>".mb_detect_encoding($file);
echo "<br>";
$file = file_get_contents('./test (2).txt', true); 

echo $file."<br>".mb_detect_encoding($file);
echo "<br>";
$file = file_get_contents('./test (3).txt', true);

echo $file."<br>".mb_detect_encoding($file);


?>

1 个答案:

答案 0 :(得分:0)

它不会将内容转换为ASCII。因为它只获取文件的内容而不需要。 更多信息位于http://us3.php.net/manual/en/function.file-get-contents.php