本文整理汇总了PHP中FileBackend::getFileProps方法的典型用法代码示例。如果您正苦于以下问题:PHP FileBackend::getFileProps方法的具体用法?PHP FileBackend::getFileProps怎么用?PHP FileBackend::getFileProps使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileBackend
的用法示例。
在下文中一共展示了FileBackend::getFileProps方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doTestCreate
private function doTestCreate($op, $alreadyExists, $okStatus, $newSize)
{
$backendName = $this->backendClass();
$dest = $op['dst'];
$this->prepare(array('dir' => dirname($dest)));
$oldText = 'blah...blah...waahwaah';
if ($alreadyExists) {
$status = $this->backend->doOperation(array('op' => 'create', 'content' => $oldText, 'dst' => $dest));
$this->assertGoodStatus($status, "Creation of file at {$dest} succeeded ({$backendName}).");
}
$status = $this->backend->doOperation($op);
if ($okStatus) {
$this->assertGoodStatus($status, "Creation of file at {$dest} succeeded without warnings ({$backendName}).");
$this->assertEquals(true, $status->isOK(), "Creation of file at {$dest} succeeded ({$backendName}).");
$this->assertEquals(array(0 => true), $status->success, "Creation of file at {$dest} has proper 'success' field in Status ({$backendName}).");
} else {
$this->assertEquals(false, $status->isOK(), "Creation of file at {$dest} failed ({$backendName}).");
}
$this->assertEquals(true, $this->backend->fileExists(array('src' => $dest)), "Destination file {$dest} exists after creation ({$backendName}).");
$props1 = $this->backend->getFileProps(array('src' => $dest));
$this->assertEquals(true, $props1['fileExists'], "Destination file {$dest} exists according to props ({$backendName}).");
if ($okStatus) {
// file content is what we saved
$this->assertEquals($newSize, $props1['size'], "Destination file {$dest} has expected size according to props ({$backendName}).");
$this->assertEquals($newSize, $this->backend->getFileSize(array('src' => $dest)), "Destination file {$dest} has correct size ({$backendName}).");
} else {
// file content is some other previous text
$this->assertEquals(strlen($oldText), $props1['size'], "Destination file {$dest} has original size according to props ({$backendName}).");
$this->assertEquals(strlen($oldText), $this->backend->getFileSize(array('src' => $dest)), "Destination file {$dest} has original size according to props ({$backendName}).");
}
$this->assertBackendPathsConsistent(array($dest));
}
示例2: getFileProps
/**
* Get properties of a file with a given virtual URL/storage path.
* Properties should ultimately be obtained via FSFile::getProps().
*
* @param $virtualUrl string
* @return Array
*/
public function getFileProps($virtualUrl)
{
$path = $this->resolveToStoragePath($virtualUrl);
return $this->backend->getFileProps(array('src' => $path));
}