SplFileObject::setFlags
(PHP 5 >= 5.1.0)
SplFileObject::setFlags — Sets flags for the SplFileObject
설명
public void SplFileObject::setFlags
( int $flags
)
Sets the flags to be used by the SplFileObject.
반환값
값을 반환하지 않습니다.
예제
Example #1 SplFileObject::setFlags() example
<?php
$file = new SplFileObject("data.csv");
$file->setFlags(SplFileObject::READ_CSV);
foreach ($file as $fields) {
var_dump($fields);
}
?>
There are no user contributed notes for this page.
