downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SplFileObject::setMaxLineLen> <SplFileObject::setCsvControl
[edit] Last updated: Fri, 25 May 2012

view this page in

SplFileObject::setFlags

(PHP 5 >= 5.1.0)

SplFileObject::setFlagsSets flags for the SplFileObject

Beschreibung

public void SplFileObject::setFlags ( int $flags )

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 add a note User Contributed Notes SplFileObject::setFlags
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites