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


PHP SplFileInfo::setFileClass方法代碼示例

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


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

示例1: testWriteThrowsWriteException

 /**
  * Test if the `write` method throws an exception if the
  * process cannot write to the file.
  *
  * @expectedException \com\mohiva\common\io\exceptions\WriteException
  */
 public function testWriteThrowsWriteException()
 {
     $this->fileInfo->openFile('w+');
     $this->fileInfo->setFileClass('com\\mohiva\\test\\resources\\common\\io\\SplFileObjectWriteMock');
     $resource = new FileResource($this->fileInfo);
     $resource->write('A string');
 }
開發者ID:mohiva,項目名稱:common,代碼行數:13,代碼來源:FileResourceTest.php

示例2: 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

示例3: SplFileInfo

<?php

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

示例4: example

<?php

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

示例5: var_dump

<?php

class Foo extends SplFileObject
{
    public $bam = array();
}
$fileInfo = new SplFileInfo('php://temp');
$fileInfo->setFileClass('Foo');
$file = $fileInfo->openFile('r');
print var_dump($file->bam);
// is null or UNKNOWN:0
?>
===DONE===
開發者ID:badlamer,項目名稱:hhvm,代碼行數:13,代碼來源:bug51374.php

示例6: current

<?php

class CustomFO extends SplFileObject
{
    private $i = 1;
    public function current()
    {
        return $this->i++ . ": " . htmlspecialchars($this->getCurrentLine()) . "";
    }
}
$SFI = new SplFileInfo("splFileInfo.php");
$SFI->setFileClass("CustomFO");
$file = $SFI->openFile();
echo "<pre>";
foreach ($file as $line) {
    echo $line;
}
echo "</pre>";
?>

<?php 
/*
foreach( get_class_methods(SplFileInfo) as $methodName){
	echo $methodName.'<br />';
}
*/
開發者ID:ralf000,項目名稱:PHP4,代碼行數:26,代碼來源:14-splFileInfo-2.php

示例7: get_class

<?php

class MyFileObject extends SplFileObject
{
}
$info = new SplFileInfo(__FILE__);
$info->setFileClass('MyFileObject');
echo get_class($info->openFile()), "\n";
$info->setFileClass('SplFileObject');
echo get_class($info->openFile()), "\n";
開發者ID:gleamingthecube,項目名稱:php,代碼行數:10,代碼來源:ext_spl_tests_SplFileInfo_setFileClass_basic.php


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