當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SplFileInfo::setInfoClass方法代碼示例

本文整理匯總了PHP中SplFileInfo::setInfoClass方法的典型用法代碼示例。如果您正苦於以下問題:PHP SplFileInfo::setInfoClass方法的具體用法?PHP SplFileInfo::setInfoClass怎麽用?PHP SplFileInfo::setInfoClass使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SplFileInfo的用法示例。


在下文中一共展示了SplFileInfo::setInfoClass方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testDecoratedMethods

 public function testDecoratedMethods()
 {
     $decorated = $this->getMockBuilder('hanneskod\\classtools\\Tests\\MockSplFileInfo')->setConstructorArgs([''])->getMock();
     $decorated->expects($this->once())->method('getRelativePath');
     $decorated->expects($this->once())->method('getRelativePathname');
     $decorated->expects($this->once())->method('getContents');
     $decorated->expects($this->once())->method('getATime');
     $decorated->expects($this->once())->method('getBasename');
     $decorated->expects($this->once())->method('getCTime');
     $decorated->expects($this->once())->method('getExtension');
     $decorated->expects($this->once())->method('getFileInfo');
     $decorated->expects($this->once())->method('getFilename');
     $decorated->expects($this->once())->method('getGroup');
     $decorated->expects($this->once())->method('getInode');
     $decorated->expects($this->once())->method('getLinkTarget');
     $decorated->expects($this->once())->method('getMTime');
     $decorated->expects($this->once())->method('getOwner');
     $decorated->expects($this->once())->method('getPath');
     $decorated->expects($this->once())->method('getPathInfo');
     $decorated->expects($this->once())->method('getPathname');
     $decorated->expects($this->once())->method('getPerms');
     $decorated->expects($this->once())->method('getRealPath');
     $decorated->expects($this->once())->method('getSize');
     $decorated->expects($this->once())->method('getType');
     $decorated->expects($this->once())->method('isDir');
     $decorated->expects($this->once())->method('isExecutable');
     $decorated->expects($this->once())->method('isFile');
     $decorated->expects($this->once())->method('isLink');
     $decorated->expects($this->once())->method('isReadable');
     $decorated->expects($this->once())->method('isWritable');
     $decorated->expects($this->once())->method('openFile');
     $decorated->expects($this->once())->method('setFileClass');
     $decorated->expects($this->once())->method('setInfoClass');
     $decorated->expects($this->once())->method('__toString')->will($this->returnValue(''));
     $fileInfo = new SplFileInfo($decorated);
     $fileInfo->getRelativePath();
     $fileInfo->getRelativePathname();
     $fileInfo->getContents();
     $fileInfo->getATime();
     $fileInfo->getBasename();
     $fileInfo->getCTime();
     $fileInfo->getExtension();
     $fileInfo->getFileInfo();
     $fileInfo->getFilename();
     $fileInfo->getGroup();
     $fileInfo->getInode();
     $fileInfo->getLinkTarget();
     $fileInfo->getMTime();
     $fileInfo->getOwner();
     $fileInfo->getPath();
     $fileInfo->getPathInfo();
     $fileInfo->getPathname();
     $fileInfo->getPerms();
     $fileInfo->getRealPath();
     $fileInfo->getSize();
     $fileInfo->getType();
     $fileInfo->isDir();
     $fileInfo->isExecutable();
     $fileInfo->isFile();
     $fileInfo->isLink();
     $fileInfo->isReadable();
     $fileInfo->isWritable();
     $fileInfo->openFile();
     $fileInfo->setFileClass();
     $fileInfo->setInfoClass();
     (string) $fileInfo;
 }
開發者ID:hanneskod,項目名稱:classtools,代碼行數:67,代碼來源:SplFileInfoTest.php

示例2: get_class

<?php

class MyInfoObject extends SplFileInfo
{
}
$info = new SplFileInfo(__FILE__);
$info->setInfoClass('MyInfoObject');
echo get_class($info->getFileInfo()), "\n";
echo get_class($info->getPathInfo()), "\n";
$info->setInfoClass('SplFileInfo');
echo get_class($info->getFileInfo()), "\n";
echo get_class($info->getPathInfo()), "\n";
try {
    $info->setInfoClass('stdClass');
} catch (UnexpectedValueException $e) {
    echo $e->getMessage(), "\n";
}
開發者ID:badlamer,項目名稱:hhvm,代碼行數:17,代碼來源:SplFileInfo_setInfoClass.php

示例3: register

 /**
  * @param \SplFileInfo $for
  *
  * @return \SplFileInfo
  */
 public static function register(\SplFileInfo $for)
 {
     $for->setInfoClass(static::class);
     return $for;
 }
開發者ID:src-run,項目名稱:augustus-file-library,代碼行數:10,代碼來源:SplFileInfo.php

示例4: SplFileInfo

<?php

$info = new SplFileInfo(__FILE__);
try {
    $info->setInfoClass('stdClass');
} catch (UnexpectedValueException $e) {
    echo $e->getMessage(), "\n";
}
開發者ID:gleamingthecube,項目名稱:php,代碼行數:8,代碼來源:ext_spl_tests_SplFileInfo_setInfoClass_error.php

示例5: example

<?php

class test extends SplFileInfo
{
    public function example()
    {
        return "From class test";
    }
}
$info = new SplFileInfo(__FILE__);
$info->setInfoClass('test');
var_dump($info->getFileInfo()->example());
var_dump($info->getPathInfo()->example());
try {
    $info->setInfoClass('stdclass');
} catch (UnexpectedValueException $e) {
    echo $e->getMessage(), PHP_EOL;
}
開發者ID:afaltz,項目名稱:hhvm,代碼行數:18,代碼來源:setInfoClass.php


注:本文中的SplFileInfo::setInfoClass方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。