首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

SplFileInfo::openFile

(PHP 5 >= 5.1.2, PHP 7)

SplFileInfo::openFile — Gets an SplFileObject object for the file

Description

代码语言:javascript
复制
public SplFileObject SplFileInfo::openFile ([ string $open_mode = "r" [, bool $use_include_path = false [, resource $context = NULL ]]] )

Creates an SplFileObject object of the file. This is useful because SplFileObject contains additional methods for manipulating the file whereas SplFileInfo is only useful for gaining information, like whether the file is writable.

Parameters

open_mode

The mode for opening the file. See the fopen() documentation for descriptions of possible modes. The default is read only.

use_include_path

When set to TRUE, the filename is also searched for within the include_path

context

Refer to the context section of the manual for a description of contexts.

Return Values

The opened file as an SplFileObject object.

Errors/Exceptions

A RuntimeException if the file cannot be opened (e.g. insufficient access rights).

Examples

Example #1 SplFileInfo::openFile() example

代码语言:javascript
复制
<?php
$fileinfo?=?new?SplFileInfo('/tmp/foo.txt');

if?($fileinfo->isWritable())?{

????$fileobj?=?$fileinfo->openFile('a');

????$fileobj->fwrite("appended?this?sample?text");
}
?>

See Also

  • SplFileObject
  • stream_context_create() - Creates a stream context
  • fopen() - Opens file or URL

← SplFileInfo::isWritable

SplFileInfo::setFileClass →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com