本文整理汇总了PHP中FileBackend::getLocalCopyMulti方法的典型用法代码示例。如果您正苦于以下问题:PHP FileBackend::getLocalCopyMulti方法的具体用法?PHP FileBackend::getLocalCopyMulti怎么用?PHP FileBackend::getLocalCopyMulti使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileBackend
的用法示例。
在下文中一共展示了FileBackend::getLocalCopyMulti方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doTestGetLocalCopy
private function doTestGetLocalCopy($source, $content)
{
$backendName = $this->backendClass();
$srcs = (array) $source;
$content = (array) $content;
foreach ($srcs as $i => $src) {
$this->prepare(array('dir' => dirname($src)));
$status = $this->backend->doOperation(array('op' => 'create', 'content' => $content[$i], 'dst' => $src));
$this->assertGoodStatus($status, "Creation of file at {$src} succeeded ({$backendName}).");
}
if (is_array($source)) {
$tmpFiles = $this->backend->getLocalCopyMulti(array('srcs' => $source));
foreach ($tmpFiles as $path => $tmpFile) {
$this->assertNotNull($tmpFile, "Creation of local copy of {$path} succeeded ({$backendName}).");
$contents = file_get_contents($tmpFile->getPath());
$this->assertNotEquals(false, $contents, "Local copy of {$path} exists ({$backendName}).");
$this->assertEquals(current($content), $contents, "Local copy of {$path} is correct ({$backendName}).");
next($content);
}
$this->assertEquals($source, array_keys($tmpFiles), "Local copies in right order ({$backendName}).");
$this->assertEquals(count($source), count($tmpFiles), "Local copies array size correct ({$backendName}).");
} else {
$tmpFile = $this->backend->getLocalCopy(array('src' => $source));
$this->assertNotNull($tmpFile, "Creation of local copy of {$source} succeeded ({$backendName}).");
$contents = file_get_contents($tmpFile->getPath());
$this->assertNotEquals(false, $contents, "Local copy of {$source} exists ({$backendName}).");
$this->assertEquals($content[0], $contents, "Local copy of {$source} is correct ({$backendName}).");
}
$obj = new stdClass();
$tmpFile->bind($obj);
}