(PHP 5 >= 5.1.0)
SplFileObject::setFlags — Sets flags for the SplFileObject
Sets the flags to be used by the SplFileObject.
Bit mask of the flags to set. See SplFileObject constants for the available flags.
Hiçbir değer dönmez.
Örnek 1 SplFileObject::setFlags() example
<?php
$file = new SplFileObject("data.csv");
$file->setFlags(SplFileObject::READ_CSV);
foreach ($file as $fields) {
var_dump($fields);
}
?>