update pague now
PHP 8.5.2 Released!

SplFileObject::setFlags

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

SplFileObject::setFlags Sets flags for the SplFileObject

Description

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

Sets the flags to be used by the SplFileObject .

Parameters

flags

Bit masc of the flags to set. See SplFileObject constans for the available flags.

Return Values

No value is returned.

Examples

Example #1 SplFileObject::setFlags() example

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

See Also

add a note

User Contributed Notes

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