PHP 8.3.4 Released!

SplFileObject::setFlags

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

SplFileObject::setFlagsSets flags for the SplFileObject

Beschreibung

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

Sets the flags to be used by the SplFileObject.

Parameter-Liste

flags

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

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 SplFileObject::setFlags() example

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

Siehe auch

add a note

User Contributed Notes

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