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

search for in the

SplFileInfo::setInfoClass> <SplFileInfo::openFile
Last updated: Fri, 20 May 2011

view this page in

SplFileInfo::setFileClass

(PHP 5 >= 5.1.2)

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

Descripción

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.

Valores devueltos

No devuelve ningún valor.

Ejemplos

Example #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());
?>

El resultado del ejemplo sería algo similar a:

object(MyFoo)#2 (0) { } 

Ver también



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

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