略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: SplFileObject::setFlags

2024-04-25

SplFileObject::setFlags

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

SplFileObject::setFlagsSets flags for the SplFileObject

说明

public SplFileObject::setFlags(int $flags): void

Sets the flags to be used by the SplFileObject.

参数

flags

Bit mask of the flags to set. See SplFileObject constants for the available flags.

返回值

没有返回值。

范例

示例 #1 SplFileObject::setFlags() example

<?php
$file 
= new SplFileObject("data.csv");
$file->setFlags(SplFileObject::READ_CSV);
foreach (
$file as $fields) {
    
var_dump($fields);
}
?>

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/splfileobject.setflags.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3