48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace dzz\eagle\classes;
|
|
|
|
use \core as C;
|
|
use \DB as DB;
|
|
|
|
class getpichomethumb
|
|
{
|
|
|
|
public function run(&$data)
|
|
{
|
|
/*$thumbid = DB::result_first("select thumb from %t where appid = %s and rid = %s", array('billfish_record', $data['appid'], $data['rid']));
|
|
if(isset($data['version']) && $data['version'] > 16){
|
|
$bid = DB::result_first("select bid from %t where rid = %s",array('billfish_record',$data['rid']));
|
|
$thumbdir = dechex($bid);
|
|
$thumbdir = (string) $thumbdir;
|
|
if(strlen($thumbdir) < 2){
|
|
$thumbdir =str_pad($thumbdir,2,0,STR_PAD_LEFT);
|
|
}
|
|
$pathdir = $data['apppath'].BS.'.bf'.BS.'.preview'.BS.$thumbdir.BS.$bid.'.small.webp';
|
|
return array('icon'=>$pathdir);
|
|
}else{
|
|
if (strlen($thumbid) < 9) {
|
|
$thumbid = str_pad($thumbid,9,0,STR_PAD_LEFT);
|
|
}
|
|
$pathdir = $data['apppath'].BS.'.bf'.BS.'.preview';
|
|
$thumbpatharr = $this->mbStrSplit($thumbid,3);
|
|
array_pop($thumbpatharr);
|
|
$thumbpath = implode(BS,$thumbpatharr);
|
|
return array('icon'=>$pathdir.BS.$thumbpath.BS.$thumbid.'.webp');
|
|
}*/
|
|
|
|
}
|
|
|
|
/* function mbStrSplit ($string, $len=1) {
|
|
$start = 0;
|
|
$strlen = mb_strlen($string);
|
|
while ($strlen) {
|
|
$array[] = mb_substr($string,$start,$len,"utf8");
|
|
$string = mb_substr($string, $len, $strlen,"utf8");
|
|
$strlen = mb_strlen($string);
|
|
}
|
|
return $array;
|
|
}*/
|
|
|
|
|
|
} |