本文目录一览:
PHP文件不识别
PHP文件读取操作相对于文件写入操作涉及更多的PHP文件操作函数,在代码实例中会详细介绍这些函数。
读取文本文件中存储数据的方式主要涉及的三个步骤及部分文件操作函数如下:
1、打开文件(文件操作函数:fopen)
2、文件数据读取(文件操作函数:fgets、file、readfile、feof等)
3、关闭文件(文件操作函数:fclose)
PHP文件读取操作代码实例 :
?
$readFun = "fread";
switch ($readFun)
{
case "fgetss":
@$fp = fopen("leapsoulcn.txt","r") or die("system error");
$allowable_tags = "h1";
while (!feof($fp)) {
$output = fgetss($fp,100,$allowable_tags);
echo $output;
}
fclose($fp);
break;
case "fgetcsv":
@$fp = fopen("leapsoulcn.txt","r") or die("system error");
while (!feof($fp)) {
$output = fgetcsv($fp,100,"\t");
print_r($output);
}
fclose($fp);
break;
case "readfile":
echo readfile("leapsoulcn.txt");
break;
case "fpassthru":
@$fp = fopen("leapsoulcn.txt","r") or die("system error");
if(!fpassthru($fp))
exit();
fclose($fp);
break;
case "file":
$output = file("leapsoulcn.txt");
print_r($output);
break;
case "fgetc":
@$fp = fopen("leapsoulcn.txt","r") or die("system error");
while (!feof($fp)) {
$str = fgetc($fp);
echo ($str == "\n"?"br/":$str);
}
fclose($fp);
break;
case "fread":
@$fp = fopen("leapsoulcn.txt","r") or die("system error");
echo fread($fp,300);
fclose($fp);
break;
default:
@$fp = fopen("leapsoulcn.txt","r") or die("system error");
while (!feof($fp)) {
$output = fgets($fp,100);
echo $output;
}
fclose($fp);
break;
}
?
为什么有的电脑无法识别PHP文件,要怎样才能识别?
按装一个PHP环境~~如果你是想打开PHP文件的话直接选择打开方式中的记事本即可 或者安装DW 软件。。
为什么我安装xampp里的Apache但是仍然不能识别php代码呢?,我要配置什么环境吗?
错误有点多
你保存文件的后缀是html,html是不能编译php的,要保存为php(php文件中可以识别html代码,但html文件中不能识别php代码)
在浏览器中访问不是双击打开文件,要在浏览器地址栏输入地址,xampp默认访问路径是localhost或者127.0.0.1(前提要把你的php文件放在xampp文件夹里面的htdocs文件夹下,如"C:\xampp\htdocs\")
php文件不要用记事本编辑,编码不对,会乱码,可以用submit text或者notepad++来编辑,dreamweaver也可以