SplFileInfo::setFileClass

(PHP 5 >= 5.1.2)

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

Описание

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.

Список параметров

class_name

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

Возвращаемые значения

Эта функция не возвращает значения после выполнения.

Примеры

Пример #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());
?>

Результатом выполнения данного примера будет что-то подобное:

object(MyFoo)#2 (0) { } 

Смотрите также


Участник рейтинга Тэглайн 2010