我有一个网站,我使用CMS上传视频。它们都以适当的电影长度放置在我的网站上。我最近注意到,如果电影长度以:0结束,则0将不会显示,因此以两个0结尾的任何内容将看起来像10:并且以0开头的任何内容将仅显示第二个数字。
我做了一些调查,发现被拉的文件叫做movie_length.tpl并尝试解密代码....我还注意到有一个名为movie_length_custom的文件我也是这样分享代码以防万一它可能在那一个。
如果有人能帮我解决这个问题会很棒!
这个第一个代码是我在想问题的地方
{**
Display MoviewLenght file
@param lenght
**}
{if $length}
{math equation="floor(el)" el=$length assign="flen"}
{if ($flen<60) }0:{$flen}
{else}
{math equation="floor(el/60)" el=$flen assign="fl"}
{$fl}:{if ($flen % 60)!= 0}{math equation="floor(el % 60)" el=$flen assign="s"}{$s} {/if}
{/if}
{/if}
In case its not there here is the other possible code
{if isset($data.PreviewXML.content.names.name_attr[0].movie_length)}
{include file="$spath/general/display_movielength.tpl" length=$data.PreviewXML.content.names.name_attr[0].movie_length}
{else}
{foreach from=$item.PreviewXML.content.names.name_attr item="length"}
{if ($length.name == "sourcemp4")}
{include file="$spath/general/display_movielength.tpl" length=$length.movie_length}
{/if}
{/foreach}
{/如果}