本文整理汇总了PHP中FileBackend::describe方法的典型用法代码示例。如果您正苦于以下问题:PHP FileBackend::describe方法的具体用法?PHP FileBackend::describe怎么用?PHP FileBackend::describe使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileBackend
的用法示例。
在下文中一共展示了FileBackend::describe方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doTestDescribe
private function doTestDescribe($op, $withSource, $okStatus)
{
$backendName = $this->backendClass();
$source = $op['src'];
$this->prepare(array('dir' => dirname($source)));
if ($withSource) {
$status = $this->backend->doOperation(array('op' => 'create', 'content' => 'blahblah', 'dst' => $source, 'headers' => array('Content-Disposition' => 'xxx')));
$this->assertGoodStatus($status, "Creation of file at {$source} succeeded ({$backendName}).");
if ($this->backend->hasFeatures(FileBackend::ATTR_HEADERS)) {
$attr = $this->backend->getFileXAttributes(array('src' => $source));
$this->assertHasHeaders(array('Content-Disposition' => 'xxx'), $attr);
}
$status = $this->backend->describe(array('src' => $source, 'headers' => array('Content-Disposition' => '')));
// remove
$this->assertGoodStatus($status, "Removal of header for {$source} succeeded ({$backendName}).");
if ($this->backend->hasFeatures(FileBackend::ATTR_HEADERS)) {
$attr = $this->backend->getFileXAttributes(array('src' => $source));
$this->assertFalse(isset($attr['headers']['content-disposition']), "File 'Content-Disposition' header removed.");
}
}
$status = $this->backend->doOperation($op);
if ($okStatus) {
$this->assertGoodStatus($status, "Describe of file at {$source} succeeded without warnings ({$backendName}).");
$this->assertEquals(true, $status->isOK(), "Describe of file at {$source} succeeded ({$backendName}).");
$this->assertEquals(array(0 => true), $status->success, "Describe of file at {$source} has proper 'success' field in Status ({$backendName}).");
if ($this->backend->hasFeatures(FileBackend::ATTR_HEADERS)) {
$this->assertHasHeaders($op['headers'], $attr);
}
} else {
$this->assertEquals(false, $status->isOK(), "Describe of file at {$source} failed ({$backendName}).");
}
$this->assertBackendPathsConsistent(array($source));
}