本文整理汇总了PHP中material::addMaterialNodb方法的典型用法代码示例。如果您正苦于以下问题:PHP material::addMaterialNodb方法的具体用法?PHP material::addMaterialNodb怎么用?PHP material::addMaterialNodb使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类material
的用法示例。
在下文中一共展示了material::addMaterialNodb方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: show
public function show()
{
$dir = TARGET_DIR . 'livesnap/';
$time = $this->input['time'] ? $this->input['time'] : TIMENOW;
$material = new material();
$handle = dir($dir);
$snaps = array();
while ($file = $handle->read()) {
if ($file == '.' || $file == '..' || !intval($file)) {
continue;
}
if (!is_dir($dir . $file . '/')) {
continue;
}
$sdir = $dir . $file . '/';
$handle1 = dir($sdir);
$i = 0;
while ($file1 = $handle1->read()) {
if (!is_file($sdir . $file1)) {
continue;
}
$vv = $sdir . $file1;
$k = $file;
@copy($vv, $dir . '/live_' . $k . '.png');
$vv = $dir . '/live_' . $k . '.png';
if (defined("TARGET_VIDEO_DOMAIN")) {
$pic = 'http://' . ltrim(TARGET_VIDEO_DOMAIN, 'http://') . '/' . 'livesnap/live_' . $k . '.png';
} else {
$pic = $this->settings['videouploads']['protocol'] . $this->settings['videouploads']['host'] . '/' . 'livesnap/live_' . $k . '.png';
}
$kk = filemtime($vv);
if (time() - $kk < 2) {
$img_info = $material->addMaterialNodb($pic, 1, 'livesnap/img/' . date('Y', $kk) . '/' . date('m', $kk));
$this->addItem($img_info[0]);
} else {
@unlink($vv);
}
$i++;
}
}
$this->output();
}