gudaochao
新手上路

UID 79718
精华
0
积分 4
帖子 15
金钱 4 喜悦币
威望 0
人脉 0
阅读权限 10
注册 2006-9-7 来自 中国
状态 离线
|
[广告]: 代充Paypal帐号美元
请教!!!!!!!!!!!!!!!
<?php
$file = fopen ("xxx.doc", "r");
if (!$file) {
echo "<p>;Unable to open remote file.\n";
exit;
}
while (!feof ($file)) {
$line .= fgets ($file, 4096);
}
echo $line;
fclose($file);
?>
请教一下为什么打开的是这段“代码”而不是“xxx.doc”文件????
请高人指点,在这里谢谢啦!!!
|
|