hxp
2025-06-04 f4a514d5ac952110da846636ecbb9de951eaf3d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
namespace Common_Version;
 
#´´½¨ÈÕÆÚ£º2012-5-2 ÉÏÎç11:18:00
#×÷Õߣºxcc
function Get_Version_Info()
{
    $retstr = "";
    $rf = fopen(dirname(__FILE__)."\\Version.ver","r");
    if(!$rf)
    {
        echo'Îļþ²»´æÔÚ';
        return;
    }
    while (!feof($rf))
    {
        $rose=fgets($rf);    //php¶ÁÎļþ
        $retstr .= $rose."<br/>";
    }
    fclose($rf);
    return $retstr;
}
?>