为什么file_get_contents函数使用大写的“数据”?

时间:2019-05-22 08:41:25

标签: php function text reference file-get-contents

我有一个奇怪的问题,我有这个HTML文件:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>query data</title>
<style type="text/css"> <!--
.normal {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #000000}
.medium {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 15px; font-weight: bold; color: #000000; text-decoration: none}
--></style>
</head>
<body>
<h3>query result</h3><table border=1>
<tr>
<td bgcolor=silver class='medium'>id</td><td bgcolor=silver class='medium'>temporalId</td><td bgcolor=silver class='medium'>data</td></tr>
<tr>
<td class='normal' valign='top'>30</td>
<td class='normal' valign='top'>1893</td>
<td class='normal' valign='top'>{&quot;participant&quot;:

当我使用file_get_contents阅读它时,代码的一部分:

<td bgcolor=silver class='medium'>data</td>

像这样转换为大写:

 <td bgcolor=silver class='medium'>DATA</td>

如果我更改单元格内的文本(如“ footext”),则文本将以小写形式加载。

为什么会这样?这是php错误?

谢谢。

0 个答案:

没有答案