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

search for in the

SplFileInfo::setInfoClass> <SplFileInfo::openFile
[edit] Last updated: Fri, 24 May 2013

view this page in

SplFileInfo::setFileClass

(PHP 5 >= 5.1.2)

SplFileInfo::setFileClassSets the class name used with SplFileInfo::openFile()

Descrição

public void SplFileInfo::setFileClass ([ string $class_name ] )

Set the class name which SplFileInfo will use to open files with when openFile() is called. The class name passed to this method must be derived from SplFileObject.

Parâmetros

class_name

The class name to use when openFile() is called.

Valor Retornado

Não há valor retornado.

Exemplos

Exemplo #1 SplFileInfo::setFileClass() example

<?php
// Create a class extending SplFileObject
class MyFoo extends SplFileObject {}

$info = new SplFileInfo(__FILE__);
// Set the class to use
$info->setFileClass('MyFoo');
var_dump($info->openFile());
?>

O exemplo acima irá imprimir algo similar à:

object(MyFoo)#2 (0) { } 

Veja Também



add a note add a note User Contributed Notes SplFileInfo::setFileClass - [0 notes]
There are no user contributed notes for this page.

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