本文整理汇总了PHP中Sys::version方法的典型用法代码示例。如果您正苦于以下问题:PHP Sys::version方法的具体用法?PHP Sys::version怎么用?PHP Sys::version使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sys
的用法示例。
在下文中一共展示了Sys::version方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkUpdate
public static function checkUpdate()
{
$xml = simplexml_load_file('http://korphome.ru/torrent_monitor/version.xml');
if (Sys::version() < $xml->current_version) {
return TRUE;
} else {
return FALSE;
}
}
示例2: function
?>
<script language="javascript" type="text/javascript">
window.onload = function(){
show('show_table');
}
</script>
<div id="wrapper">
<header id="header">
<?php
$dir = __DIR__ . "/../";
include_once $dir . "class/System.class.php";
?>
<h1 class="h-title">TorrentMonitor v.
<?php
echo Sys::version();
?>
</h1>
<menu class="h-menu">
<li id="show_table" class="active"><a href="#" onclick="show('show_table')" class="h-menu-item1">Торренты</a></li>
<li id="show_watching"><a href="#" onclick="show('show_watching')" class="h-menu-item2">Пользователи</a></li>
<li id="add"><a href="#" onclick="show('add')" class="h-menu-item3">Добавить</a></li>
<li id="credentials"><a href="#" onclick="show('credentials')" class="h-menu-item4">Учётные данные</a></li>
<li id="settings"><a href="#" onclick="show('settings')" class="h-menu-item5">Настройки</a></li>
<li id="show_warnings"><a href="#" onclick="show('show_warnings')" class="h-menu-item6">Ошибки
<?php
$errors = Database::getWarningsCount();
if (!empty($errors)) {
$count = 0;
for ($i = 0; $i < count($errors); $i++) {
$count += $errors[$i]['count'];