SplFileObject::setFlags

(PHP 5 >= 5.1.0)

SplFileObject::setFlagsSets flags for the SplFileObject

說明

public void SplFileObject::setFlags ( int $flags )

Sets the flags to be used by the SplFileObject.

參數

flags

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

回傳值

無回傳值。

範例

Example #1 SplFileObject::setFlags() example

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

參見

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top