将文件作为字符串返回的脚本

时间:2014-04-19 20:25:03

标签: javascript php html string

我想要做的事情非常简单,但我遇到问题让它发挥作用...... 它基本上是html页面上的文本,根据不同html文件中存在的文本进行更改。

主要html文件:

<html> 
<body>
       <label for="Order2" id="Order2"> </label>
       <script>
           var Order2 = returnedfromthephpfile;
           document.getElementById('Order2').innerHTML = Order2;
       </script>
</body>
</html>

这是我的php文件:

<?php
    $src = fopen('C:\\Order.html', 'r');
    return $src;
    fclose($src);
?>

另一个html文件:

<TABLE BORDER="0" cellpadding="0" CELLSPACING="0"><TR><TD WIDTH="360" HEIGHT="190" VALIGN="top">Hello</TD></TR></TABLE>

有谁知道我该怎么做,或者有更简单的方法吗?

1 个答案:

答案 0 :(得分:0)

您希望使用file_get_contents将文件内容转换为字符串。 http://us2.php.net/file_get_contents

$src = file_get_contents("path_to_file.txt")