当前位置: 编程技术>php
本页文章导读:
▪php导出与读取csv文件的实现代码 例1,file读取csv文件
代码示例:
<?php
$users = file("./demoCSV.csv");
foreach ($users as $user) {
list($name, $email, $phone) = explode(",", $user);
echo "<p>$name ($email) Tel. $phone</p>.........
▪php文件的创建时间(filectime)、修改时间(filemtime)、访问时间(fileatime) 1,php文件的创建时间的例子
代码示例:
<html>
<head>
<title>文件的创建时间-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTes.........
▪php判断是否为文件(is_file())或目录(is_dir())的实例代码 1,php检测变量是否为一个文件,is_file()的用法举例。
代码示例:
<html>
<head>
<title>is_file()判断是否为文件-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFile.........
[1]php导出与读取csv文件的实现代码
来源: 互联网 发布时间: 2013-12-24
例1,file读取csv文件
代码示例:
<?php
$users = file("./demoCSV.csv");
foreach ($users as $user) {
list($name, $email, $phone) = explode(",", $user);
echo "<p>$name ($email) Tel. $phone</p>";
} //edit by www.
?>
<!--
A,a@example.com,11111
B,b@example.com,22222
-->
$users = file("./demoCSV.csv");
foreach ($users as $user) {
list($name, $email, $phone) = explode(",", $user);
echo "<p>$name ($email) Tel. $phone</p>";
} //edit by www.
?>
<!--
A,a@example.com,11111
B,b@example.com,22222
-->
例2,fgetcsv读取一个csv文件
代码示例:
<?php
$fh = fopen("./demoCSV.csv", "r");
while (list($name, $email, $phone) = fgetcsv($fh, 1024, ",")) {
echo "<p>$name ($email) Tel. $phone</p>";
} //edit by www.
?>
<!--
A,a@example.com,11111
B,b@example.com,22222
-->
例3,fopen读取一个csv文件
代码示例:
<?php
$file = "./demoCSV.csv";
$fh = fopen($file, "rt");
$userdata = fread($fh, filesize($file));
fclose($fh);
echo $userdata;
?>
[2]php文件的创建时间(filectime)、修改时间(filemtime)、访问时间(fileatime)
来源: 互联网 发布时间: 2013-12-24
1,php文件的创建时间的例子
代码示例:
<html>
<head>
<title>文件的创建时间-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f 创建于:".date( "D d M Y g:i A", filectime( $f ) )."<br>";
}
?>
</body>
</html>
<head>
<title>文件的创建时间-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f 创建于:".date( "D d M Y g:i A", filectime( $f ) )."<br>";
}
?>
</body>
</html>
2,php文件的修改时间
代码示例:
<html>
<head>
<title>文件的修改时间-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f 修改于:".date( "D d M Y g:i A", filemtime( $f ) )."<br>";
}
?>
</body>
</html>
<head>
<title>文件的修改时间-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f 修改于:".date( "D d M Y g:i A", filemtime( $f ) )."<br>";
}
?>
</body>
</html>
3,php文件的最后访问时间
代码示例:
<html>
<head>
<title>文件的最后访问地时间-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f 最后访问时间为:".date( "D d M Y g:i A", fileatime( $f ) )."<br>";
}
?>
</body>
</html>
<head>
<title>文件的最后访问地时间-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f 最后访问时间为:".date( "D d M Y g:i A", fileatime( $f ) )."<br>";
}
?>
</body>
</html>
[3]php判断是否为文件(is_file())或目录(is_dir())的实例代码
来源: 互联网 发布时间: 2013-12-24
1,php检测变量是否为一个文件,is_file()的用法举例。
代码示例:
<html>
<head>
<title>is_file()判断是否为文件-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f is ".(is_file( $f )?"":"not ")."a file<br>";
}
?>
</body>
</html>
<head>
<title>is_file()判断是否为文件-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f is ".(is_file( $f )?"":"not ")."a file<br>";
}
?>
</body>
</html>
2,php检测是否为一个目录,is_dir()的用法举例。
代码示例:
<html>
<head>
<title>is_dir()检测是否为一个目录-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f is ".(is_dir( $f )?"":"not ")."a directory<br>";
}
?>
</body>
</html>
<head>
<title>is_dir()检测是否为一个目录-www.</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
if ( ! file_exists( $f ) ){
print "$f does not exist<BR>";
return;
}
print "$f is ".(is_dir( $f )?"":"not ")."a directory<br>";
}
?>
</body>
</html>
最新技术文章: