本文整理汇总了PHP中Thread::getDatBytesFromLocalDat方法的典型用法代码示例。如果您正苦于以下问题:PHP Thread::getDatBytesFromLocalDat方法的具体用法?PHP Thread::getDatBytesFromLocalDat怎么用?PHP Thread::getDatBytesFromLocalDat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Thread
的用法示例。
在下文中一共展示了Thread::getDatBytesFromLocalDat方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
} elseif (isset($_GET['setpal'])) {
require_once P2_LIB_DIR . '/setPalace.func.php';
setPalace($host, $bbs, $key, $_GET['setpal']);
// スレッドあぼーん
} elseif (isset($_GET['taborn'])) {
require_once P2_LIB_DIR . '/settaborn.func.php';
settaborn($host, $bbs, $key, $_GET['taborn']);
}
//=================================================================
// メイン
//=================================================================
$aThread = new Thread();
// hostを分解してidxファイルのパスを求める
$aThread->setThreadPathInfo($host, $bbs, $key);
$key_line = $aThread->getThreadInfoFromIdx();
$aThread->getDatBytesFromLocalDat();
// $aThread->length をset
//$aThread->readDatInfoFromFile();
if (!($aThread->itaj = P2Util::getItaName($aThread->host, $aThread->bbs))) {
$aThread->itaj = $aThread->bbs;
}
$hc['itaj'] = $aThread->itaj;
if (!$aThread->ttitle) {
if (isset($ttitle_en)) {
$aThread->setTtitle(base64_decode($ttitle_en));
} else {
$aThread->setTitleFromLocal();
}
}
if (!$ttitle_en) {
if ($aThread->ttitle) {
示例2: get_thread_info
/**
* スレッド情報を取得する
*
* @param string $host
* @param string $bbs
* @param string $key
* @return object スレッド情報
*/
function get_thread_info($host, $bbs, $key)
{
global $_conf;
$group = P2Util::getHostGroupName($host);
$info = new stdClass();
$info->type = 'thread';
$info->group = $group;
$info->host = $host;
$info->bbs = $bbs;
$info->key = $key;
$aThread = new Thread();
// hostを分解してidxファイルのパスを求める
$aThread->setThreadPathInfo($host, $bbs, $key);
$key_line = $aThread->getThreadInfoFromIdx();
// $aThread->length をset
$aThread->getDatBytesFromLocalDat();
// 板名を取得
$aThread->itaj = P2Util::getItaName($host, $bbs);
if (!$aThread->itaj) {
if (isset($_GET['itaj_en'])) {
$aThread->itaj = UrlSafeBase64::decode($_GET['itaj_en']);
} else {
$aThread->itaj = $bbs;
}
}
$info->itaj = $aThread->itaj;
// スレタイトルを取得
if (!$aThread->ttitle) {
if (isset($_GET['ttitle_en'])) {
$aThread->setTtitle(UrlSafeBase64::decode($_GET['ttitle_en']));
} else {
$aThread->setTitleFromLocal();
}
}
$info->ttitle = $aThread->ttitle;
// お気にスレ登録状況を取得
$favs = array();
if ($_conf['expack.misc.multi_favs']) {
$favlist_titles = FavSetManager::getFavSetTitles('m_favlist_set');
for ($i = 0; $i <= $_conf['expack.misc.favset_num']; $i++) {
if (!isset($favlist_titles[$i]) || $favlist_titles[$i] == '') {
if ($i == 0) {
$favtitle = 'お気にスレ';
} else {
$favtitle = "お気にスレ{$i}";
}
} else {
$favtitle = $favlist_titles[$i];
}
$favs[$i] = array('title' => $favtitle, 'set' => !empty($aThread->favs[$i]));
}
} else {
$favs[0] = array('title' => 'お気にスレ', 'set' => !empty($aThread->fav));
}
$info->favs = $favs;
// 殿堂チェック
$info->palace = false;
if ($pallines = FileCtl::file_read_lines($_conf['palace_idx'], FILE_IGNORE_NEW_LINES)) {
foreach ($pallines as $l) {
$palarray = explode('<>', $l);
if ($aThread->key == $palarray[1] && $aThread->bbs == $palarray[11]) {
if (P2Util::getHostGroupName($palarray[10]) == $group) {
$info->palace = true;
break;
}
}
}
}
// スレッドあぼーんチェック
$info->taborn = false;
$taborn_idx = P2Util::idxDirOfHostBbs($host, $bbs) . 'p2_threads_aborn.idx';
if ($tabornlines = FileCtl::file_read_lines($taborn_idx, FILE_IGNORE_NEW_LINES)) {
foreach ($tabornlines as $l) {
$tabornarray = explode('<>', $l);
if ($key == $tabornarray[1]) {
$info->taborn = true;
break;
}
}
}
// ログ関連
$hasLog = false;
if (file_exists($aThread->keydat)) {
$info->keydat = $aThread->keydat;
$info->length = $aThread->length;
$hasLog = true;
} else {
$info->keydat = null;
$info->length = -1;
}
if (file_exists($aThread->keyidx)) {
$info->keyidx = $aThread->keyidx;
//.........这里部分代码省略.........