• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP nice_length函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中nice_length函数的典型用法代码示例。如果您正苦于以下问题:PHP nice_length函数的具体用法?PHP nice_length怎么用?PHP nice_length使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: array

$fields = array();
if (preg_match('/\\btitle/i', $_REQUEST['field'])) {
    $fields[] = 'title';
}
if (stristr($_REQUEST['field'], 'subtitle')) {
    $fields[] = 'subtitle';
}
if (stristr($_REQUEST['field'], 'desc')) {
    $fields[] = 'description';
}
if (stristr($_REQUEST['field'], 'cat')) {
    $fields[] = 'category';
}
if ($fields) {
    $search_str .= '&fields=' . implode(',', $fields);
}
// Display the results
$row = 0;
foreach ($Results as $show) {
    // Print the content
    echo $show->channel->name . '<br />';
    echo '<a href="' . root_url . 'tv/detail/' . $show->chanid . '/' . $show->starttime . '"><b>' . $show->title . '</b></a><br />';
    if (strlen($show->subtitle)) {
        echo $show->subtitle . '<br />';
    }
    //  echo $show->description.'<br />';
    echo strftime($_SESSION['date_search'], $show->starttime) . '<br />';
    echo nice_length($show->length) . '<br /><br />';
    $row++;
}
require_once 'modules/_shared/tmpl/' . tmpl . '/footer.php';
开发者ID:knowledgejunkie,项目名称:mythweb,代码行数:31,代码来源:search.php


示例2: t

?>
</dd>
            <dt><?php 
echo t('Last recording');
?>
:</dt>
            <dd><?php 
echo date('l F jS, Y', $last);
?>
</dd>
            <dt><?php 
echo t('Total Time');
?>
:</dt>
            <dd><?php 
echo t('$1 wasted', nice_length($time));
?>
</dd>
        </dl>
    </div>

    <table id="top_ten_shows" style="text-align: left;">
    <caption>Top <?php 
echo $_REQUEST['count_dropdown'];
?>
 recorded shows</caption>
    <colgroup>
        <col class="num"></col>
        <col class="title"></col>
        <col class="count"></col>
        <col class="last_recorded"></col>
开发者ID:knowledgejunkie,项目名称:mythweb,代码行数:31,代码来源:stats.php


示例3: nice_length

:</dt>
	    <dd><?php 
if ($last - $first != 0) {
    echo nice_length($last - $first);
} else {
    echo "0";
}
?>
</dd>
            <dt><?php 
echo t('Total Recorded');
?>
:</dt>
            <dd><?php 
if (!is_null($time)) {
    echo nice_length($time);
} else {
    echo "0";
}
?>
</dd>
	    <dt><?php 
echo t('Percent of time spent recording');
?>
:</dt>
	    <dd><?php 
if ($last - $first != 0 && $tuners > 0) {
    echo intval($time / ($last - $first) * 100 / $tuners);
} else {
    echo "0";
}
开发者ID:halovanic,项目名称:mythweb,代码行数:31,代码来源:stats.php


示例4: t

        ?>
:</th>
            <td><?php 
        echo $program->starstring;
        ?>
</td>
        </tr><?php 
    }
    ?>
<tr class="x-extras">
            <th><?php 
    echo t('Length');
    ?>
:</th>
            <td><?php 
    echo nice_length($program->length);
    ?>
</td>
        </tr><?php 
    if ($program->filename) {
        ?>
<tr class="x-extras">
            <th><?php 
        echo t('File Size');
        ?>
:</th>
            <td><?php 
        echo nice_filesize($program->filesize);
        ?>
</td>
        </tr><?php 
开发者ID:antonyraj15411,项目名称:mythweb,代码行数:31,代码来源:detail.php


示例5: strftime

        ?>
</td>
            <?php 
    }
    if ($_SESSION['settings']['screens']['tv']['upcoming recordings']['record date'] == 'on') {
        ?>
                <td class="x-recdate" nowrap><?php 
        echo strftime($_SESSION['date_scheduled'], $show->recstartts);
        ?>
</td>
            <?php 
    }
    if ($_SESSION['settings']['screens']['tv']['upcoming recordings']['length'] == 'on') {
        ?>
                <td class="x-length"><?php 
        echo nice_length($show->length);
        ?>
</td>
            <?php 
    }
    if ($show->recstatus == 'Recording') {
        echo '    <td class="x-commands commands x-recording" colspan="2">', '<a href="', root_url, 'tv/detail/', $show->chanid, '/', $show->starttime, '">', t('Currently Recording:  Edit'), "</a></td>\n";
    } else {
        foreach ($commands as $command) {
            echo '    <td class="x-commands commands">', $command, "</td>\n";
        }
    }
    ?>
</tr><?php 
    $prev_group = $cur_group;
    $row++;
开发者ID:AndrewMoore10,项目名称:MythWebKGTV,代码行数:31,代码来源:upcoming.php


示例6: alert

        var id = result.responseJSON['id'].evalJSON();
        var st = result.responseJSON['starttime'].evalJSON();
        alert("Can't delete "+st+".\nHTTP Error:  " + errstr + ' (' + err + ')');
        ajax_remove_request();
    }

// -->
</script>

<script type="text/javascript">
<?php 
foreach ($row_count as $count) {
    echo 'rowcount.push([' . escape($count) . "]);\n";
}
foreach ($row_section as $section) {
    echo 'rowsection.push([' . escape($section) . "]);\n";
}
foreach ($Program_Titles as $title => $count) {
    echo 'titles[' . escape($title) . '] = ' . escape($count) . ";\n";
}
foreach ($Groups as $recgroup => $count) {
    echo 'groups[' . escape($recgroup) . '] = ' . escape($count) . ";\n";
}
?>
</script>

<?php 
echo '<div style="padding-right: 75px; text-align: right; float: right; padding-top: 1em;">' . t('$1 programs, using $2 ($3) out of $4 ($5 free).', '<span id="programcount">' . t($Total_Programs) . '</span>', '<span id="diskused">' . nice_filesize($Total_Used) . '</span>', '<span id="totaltime">' . nice_length($Total_Time) . '</span>', '<span id="disksize">' . nice_filesize(disk_size) . '</span>', '<span id="diskfree">' . nice_filesize(disk_size - disk_used) . '</span>') . '</div>';
echo '<div id="feed_buttons"><a href="rss' . $_SERVER['REQUEST_URI'] . '"><img src="' . skin_url . '/img/rss2.0.gif"></a></div>';
// Print the page footer
require 'modules/_shared/tmpl/' . tmpl . '/footer.php';
开发者ID:AndrewMoore10,项目名称:MythWebKGTV,代码行数:31,代码来源:quad.php


示例7: metadata

 function metadata()
 {
     global $Category_String;
     return array('intid' => $this->intid, 'img' => '<img width="' . $this->cover_scaled_width . '" height="' . $this->cover_scaled_height . '" alt="' . t('Missing Cover') . '"' . ($_SESSION["show_video_covers"] && file_exists($this->cover_url) ? ' src="data/video_covers/' . basename($this->cover_file) . '"' : '') . '>', 'title' => '<a href="' . $this->url . '">' . $this->title . '</a>', 'subtitle' => $this->subtitle, 'season' => $this->season, 'episode' => $this->episode, 'playtime' => nice_length($this->length * 60), 'category' => strlen($Category_String[$this->category]) ? $Category_String[$this->category] : t('Uncategorized'), 'imdb' => $this->inetref != '00000000' ? '<a href="http://www.imdb.com/Title?' . $this->inetref . '">' . $this->inetref . '</a>' : '', 'plot' => $this->plot, 'rating' => $this->rating, 'director' => $this->director, 'inetref' => $this->inetref, 'year' => $this->year, 'userrating' => $this->userrating, 'length' => $this->length, 'showlevel' => $this->showlevel);
 }
开发者ID:halovanic,项目名称:mythweb,代码行数:5,代码来源:Video.php


示例8: t

 alt="<?php 
    echo t('Missing Cover');
    ?>
"></div>
        <div id="<?php 
    echo $video->intid;
    ?>
-category">           <?php 
    echo $Category_String[$video->category];
    ?>
</div>
        <div id="<?php 
    echo $video->intid;
    ?>
_playtime">           <?php 
    echo nice_length($video->length * 60);
    ?>
</div>
        <div id="<?php 
    echo $video->intid;
    ?>
_imdb">               <?php 
    if ($video->inetref != '00000000') {
        ?>
<a href="<?php 
        echo makeImdbWebUrl($video->inetref);
        ?>
"><?php 
        echo $video->inetref;
        ?>
</a><?php 
开发者ID:knowledgejunkie,项目名称:mythweb,代码行数:31,代码来源:video.php


示例9: print_shows

function print_shows()
{
    global $this_channel;
    // No search was performed, just return
    if (!is_array($this_channel->programs)) {
        return;
    }
    // Display the results
    $row = 0;
    foreach ($this_channel->programs as $show) {
        if (strlen($show->title) <= 0 && strlen($show->subtitle) <= 0) {
            continue;
        }
        // Print the content
        ?>
    <?php 
        echo strftime($_SESSION['time_format'], $show->starttime);
        ?>
 -
    <?php 
        echo strftime($_SESSION['time_format'], $show->endtime);
        ?>
<br />
<?php 
        if (strlen($show->subtitle) <= 0) {
            echo '<b><a href="tv/detail/' . $show->chanid . '/' . $show->starttime . '">' . $show->title . '</a></b><br />';
        } else {
            echo '<a href="tv/detail/' . $show->chanid . '/' . $show->starttime . '">' . $show->title . '</a><br />';
        }
        if (strlen($show->subtitle)) {
            echo '<b>' . $show->subtitle . '</b><br />';
        }
        //      if(strlen($show->description))
        //          echo $show->description.'<br />';
        echo nice_length($show->length) . '<br /><br />';
        $row++;
    }
}
开发者ID:antonyraj15411,项目名称:mythweb,代码行数:38,代码来源:channel.php


示例10: t

        ?>
">
                    <img src="<?php 
        echo skin_url;
        ?>
/img/video_sm.png"><?php 
        echo t('Direct Download');
        ?>
</a></li>
        </ul>
        </td>
<?php 
    }
    ?>
</tr><?php 
    $prev_group = $cur_group;
    // Keep track of how many shows are visible in each section
    $row_count[$section]++;
    // Keep track of which shows are in which section
    $row_section[$row] = $section;
    // Increment row last
    $row++;
}
?>

</table>

<?php 
echo '<p align="right" style="padding-right: 75px">' . t('$1 programs, using $2 ($3) out of $4 ($5 free).', '<span id="programcount">' . t($Total_Programs) . '</span>', '<span id="diskused">' . nice_filesize($Total_Used) . '</span>', '<span id="totaltime">' . nice_length($Total_Time) . '</span>', '<span id="disksize">' . nice_filesize(disk_size) . '</span>', '<span id="diskfree">' . nice_filesize(disk_size - disk_used) . '</span>') . '</p>';
// Print the page footer
require 'modules/_shared/tmpl/' . tmpl . '/footer.php';
开发者ID:AndrewMoore10,项目名称:MythWebKGTV,代码行数:31,代码来源:recorded.php


示例11: foreach

$row = 0;
foreach ($All_Shows as $show) {
    if (strlen($show->subtitle) > 1) {
        echo $show->title . "<br />";
    } else {
        echo "<b>" . $show->title . "</b><br />";
    }
    echo $show->channame . "<br />";
    if (strlen($show->subtitle) > 1) {
        echo "<b>" . $show->subtitle . "</b><br />";
    }
    if (strlen($show->description) > 1) {
        echo $show->description . "<br />";
    }
    echo date('D, M j, Y', $show->starttime) . ' (' . strftime($_SESSION['time_format'], $show->starttime) . ")<br />";
    echo nice_length($show->length) . " " . nice_filesize($show->filesize) . "<br />";
    if ($show->endtime > time()) {
        ?>
            <font color="#FF0000">currently recording - </font>
<?php 
    }
    ?>
            <b><a id="delete_<?php 
    echo $row;
    ?>
" href="tv/recorded?delete=yes&chanid=<?php 
    echo $show->chanid;
    ?>
&starttime=<?php 
    echo $show->starttime;
    ?>
开发者ID:knowledgejunkie,项目名称:mythweb,代码行数:31,代码来源:recorded.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP nice_time函数代码示例发布时间:2022-05-15
下一篇:
PHP nice_format函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap