php板块进不了来这儿问问吧

php板块进不了来这儿问问吧

<?
NinoSanzi|ProfessionalGolfer|green;
while   ($line   =   fgets   ($user_file   ,   4096)){

list   ($name   ,   $occupation   ,   $color)   =   explode   ( "| "   ,   $line   );
print   "name:   $name   </br> ";
print   "occupation:   $occupation   </br> ";
print   "favorite   color:   $color </br> ";
}
?>
大家帮忙看看
运行是提示:
Warning:   fgets():   supplied   argument   is   not   a   valid   stream   resource   in   D:\www\list.php   on   line   3
这哪里错了啊~~
$user_file是不是直接用了文件名?

<?php
$user_file=   @fopen( "D:\\www\\xxx.txt ",   "r ");
while   ($line   =   fgets   ($user_file   ,   4096)){
list   ($name   ,   $occupation   ,   $color)   =   explode   ( "| "   ,   $line   );
print   "name:   $name   </br> ";
print   "occupation:   $occupation   </br> ";
print   "favorite   color:   $color </br> ";
}
?>
对啊~~解决了
哈哈