SplFileObject::setFlags

(PHP 5 >= 5.1.0, PHP 7)
Sets flags for the SplFileObject
public void SplFileObject::setFlags ( int $flags )

Sets the flags to be used by the SplFileObject.

Parameters:
flags

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

Returns:

No value is returned.

Examples:
SplFileObject::setFlags() example
1
2
3
4
5
6
7
<?php
$file new SplFileObject("data.csv");
$file->setFlags(SplFileObject::READ_CSV);
foreach ($file as $fields) {
    var_dump($fields);
}
?>
See also:

SplFileObject::getFlags() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.