array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'splfileinfo.setinfoclass.php', 1 => 'SplFileInfo::setInfoClass', 2 => 'Sets the class used with SplFileInfo::getFileInfo and SplFileInfo::getPathInfo', ), 'up' => array ( 0 => 'class.splfileinfo.php', 1 => 'SplFileInfo', ), 'prev' => array ( 0 => 'splfileinfo.setfileclass.php', 1 => 'SplFileInfo::setFileClass', ), 'next' => array ( 0 => 'splfileinfo.tostring.php', 1 => 'SplFileInfo::__toString', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/spl/splfileinfo/setinfoclass.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::setInfoClass — Sets the class used with SplFileInfo::getFileInfo() and SplFileInfo::getPathInfo()
Use this method to set a custom class which will be used when SplFileInfo::getFileInfo() and SplFileInfo::getPathInfo() are called. The class name passed to this method must be SplFileInfo or a class derived from SplFileInfo.
class
The class name to use when SplFileInfo::getFileInfo() and SplFileInfo::getPathInfo() are called.
Es wird kein Wert zurückgegeben.
Beispiel #1 SplFileInfo::setFileClass() example
<?php
// Define a class which extends SplFileInfo
class MyFoo extends SplFileInfo {}
$info = new SplFileInfo('foo');
// Set the class name to use
$info->setInfoClass('MyFoo');
var_dump($info->getFileInfo());
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
object(MyFoo)#2 (0) { }