当前位置: 首页>>代码示例>>PHP>>正文


PHP Thread::getMotoThread方法代码示例

本文整理汇总了PHP中Thread::getMotoThread方法的典型用法代码示例。如果您正苦于以下问题:PHP Thread::getMotoThread方法的具体用法?PHP Thread::getMotoThread怎么用?PHP Thread::getMotoThread使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Thread的用法示例。


在下文中一共展示了Thread::getMotoThread方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: toolbar_i_action_thread_button

/**
 * 外部アプリ等でスレッドを開くボタン
 *
 * @param string $icon
 * @param string $label (fallback)
 * @param Thread $aThread
 * @return string
 */
function toolbar_i_action_thread_button($icon, $label, Thread $aThread)
{
    global $_conf;
    $type = _toolbar_i_client_type();
    $pattern = $_conf["expack.tba.{$type}.thread_uri"];
    if (!$pattern) {
        return toolbar_i_disabled_button($icon, $label);
    }
    $url = $aThread->getMotoThread(true, '');
    $uri = p2h(strtr($pattern, array('$time' => time(), '$host' => rawurlencode($aThread->host), '$bbs' => rawurlencode($aThread->bbs), '$key' => rawurlencode($aThread->key), '$ls' => rawurlencode($aThread->ls), '$url' => $url, '$eurl' => rawurlencode($url), '$path' => preg_replace('!^https?://!', '', $url))), false);
    $title = $_conf["expack.tba.{$type}.thread_title"];
    if ($title !== '') {
        $label = p2h($title, false);
    }
    return _toolbar_i_button($icon, $label, $uri);
}
开发者ID:xingskycn,项目名称:p2-php,代码行数:24,代码来源:toolbar_i.inc.php

示例2:

if (file_exists($aThread->keydat) or file_exists($aThread->keyidx)) {
    $existLog = true;
} else {
    $existLog = false;
}
//=================================================================
// HTMLプリント
//=================================================================
if ($_conf['ktai']) {
    $target_read_at = '';
    $target_sb_at = '';
} else {
    $target_read_at = ' target="read"';
    $target_sb_at = ' target="sbject"';
}
$motothre_url = $aThread->getMotoThread();
if (P2Util::isHost2chs($aThread->host)) {
    $motothre_org_url = $aThread->getMotoThread(true);
} else {
    $motothre_org_url = $motothre_url;
}
if (isset($title_msg)) {
    $hc['title'] = $title_msg;
} else {
    $hc['title'] = "info - {$hc['ttitle_name']}";
}
$hd = array_map('htmlspecialchars', $hc);
P2Util::header_nocache();
echo $_conf['doctype'];
echo <<<EOHEADER
<html>
开发者ID:unpush,项目名称:p2-php,代码行数:31,代码来源:info.php


注:本文中的Thread::getMotoThread方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。