📄 getdownloadurl.php
字号:
<!--
This file is part of GUP.
GUP is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
GUP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with GUP. If not, see <http://www.gnu.org/licenses/>.
-->
<?php
$lastestVersion = 4.5;
$lastestVersionStr = "4.5";
$DLURL = "http://sourceforge.net/project/downloading.php?group_id=95717&filename=npp.4.5.Installer.exe";
$curentVersion = $_GET["version"];
function curlhttp($url)
{ // Permet d'envoyer une requ鑤e http et de recevoir le r閟ultat avec CURL
if (!$ch=curl_init($url))
{
return FALSE;
}
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Permet de renvoyer le r閟ultat dans une variable
curl_setopt($ch, CURLOPT_TIMEOUT, 10); // Time out apr鑣 10 secondes
$result=curl_exec($ch);
curl_close($ch);
return $result;
}
if ($curentVersion >= $lastestVersion)
{
echo
"<?xml version=\"1.0\"?>
<GUP>
<NeedToBeUpdated>no</NeedToBeUpdated>
</GUP>
";
}
else
{
$result = curlhttp($DLURL);
preg_match('/http:\/\/.+\/.+.exe/', $result, $strippedResult);
echo
"<?xml version=\"1.0\"?>
<GUP>
<NeedToBeUpdated>yes</NeedToBeUpdated>
<Version>$lastestVersionStr</Version>
<Location>$strippedResult[0]</Location>
</GUP>"
;
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -