php 查看spl,PHP SPL标准库之文件操作(SplFileInfo和SplFileObject)实例

PHP SPL中提供了SplFileInfo和SplFileObject两个类来处理文件操作。

SplFileInfo用来获取文件详细信息:

$file = new SplFileInfo('foo-bar.txt');

print_r(array(

'getATime' => $file->getATime(), //最后访问时间

'getBasename' => $file->getBasename(), //获取无路径的basename

'getCTime' => $file->getCTime(), //获取inode修改时间

'getExtension' => $file->getExtension(), //文件扩展名

'getFilename' => $file->getFilename(), //获取文件名

'getGroup' => $file->getGroup(), //获取文件组

'getInode' => $file->getInode(), //获取文件inode

'getLinkTarget' => $file->getLinkTarget(), //获取文件链接目标文件

'getMTime' => $file->getMTime(), //获取最后修改时间

'getOwner' => $file->getOwner(), //文件拥有者

'getPath' => $file->getPath(), //不带文件名的文件路径

'getPathInfo' => $file->getPathInfo(), //上级路径的SplFileInfo对象

'getPathname' => $file->getPathname(), //全路径

'getPerms' => $file->getPerms(), //文件权限

'getRealPath' => $file->getRealPath(), //文件绝对路径

'getSize' => $file->getSize(),//文件大小,单位字节

'getType' => $file->getType(),//文件类型 file  dir  link

'isDir' => $file->isDir(), //是否是目录

'isFile' => $file->isFile(), //是否是文件

'isLink' => $file->isLink(), //是否是快捷链接

'isExecutable' => $file->isExecutable(), //是否可执行

'isReadable' => $file->isReadable(), //是否可读

'isWritable' => $file->isWritable(), //是否可写

));

SplFileObject继承SplFileInfo并实现RecursiveIterator , SeekableIterator接口 ,用于对文件遍历、查找、操作

遍历:

try {

foreach(new SplFileObject('foo-bar.txt') as $line) {

echo $line;

}

} catch (Exception $e) {

echo $e->getMessage();

}

查找指定行:

try {

$file = new SplFileObject('foo-bar.txt');

$file->seek(2);

echo $file->current();

} catch (Exception $e) {

echo $e->getMessage();

}

写入csv文件:

$list  = array (

array( 'aaa' ,  'bbb' ,  'ccc' ,  'dddd' ),

array( '123' ,  '456' ,  '7891' ),

array( '"aaa"' ,  '"bbb"' )

);

$file  = new  SplFileObject ( 'file.csv' ,  'w' );

foreach ( $list  as  $fields ) {

$file -> fputcsv ( $fields );

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值