- 论坛徽章:
- 0
|
兄弟刚学PHP遇到麻烦了……
谢谢老大:
中间截取了一段程序,帮我看看:
//+-----------User functions---------------------
function get_user_portait($usericon) {
$portait=explode('%',$usericon);
if (empty($usericon)) return '';
if ($portait[1] && $portait[2] && $portait[3])
return "<img src='$portait[1]' width=$portait[2] height=$portait[3] border=0>;";
else return "<img src='images/face/$portait[0]' border=0>;";
}
function getUserRec() {
global $wandererboardid,$username,$gotNewMessage,$postamount,$lastime;
$username=$wandererboardid;
$gotNewMessage=0;
$userdata=readuser($username,"amount,lasttime" ;
$rec=@mysql_fetch_array(@mysql_query("select count(*) from messages where user='$username' && kind='rec' && isread=0" );
$gotNewMessage=$rec[0];
$postamount=$userdata[amount];
$lastime=getfulldate($userdata[lasttime]);
}
function getUserLevel($amount,$username) {
global $mtitle,$mpostmark,$admintitle,$motitle,$adtitle,$nforum_admin,$admin_user,$admin_name;
$user_level=$mtitle[0];
$count=count($mpostmark);
for ($i=1; $i<$count; $i++) if ($mpostmark[$i] && $amount>;=$mpostmark[$i]) $user_level=$mtitle[$i];
if ($motitle) foreach($nforum_admin as $k=>;$value) if(in_array($username,$value)) $user_level=$motitle;
if ($adtitle && in_array($username,$admin_user)) $user_level=$adtitle;
if ($admintitle && $username==$admin_name) $user_level=$admintitle;
return $user_level;
}
function getNextLevel($amount,$username) {
global $mpostmark;
$next_level=$mpostmark[1];
$count=count($mpostmark);
for ($i=1; $i<$count; $i++)
if ($mpostmark[$i] && $amount>;=$mpostmark[$i]) $next_level=$mpostmark[$i+1];
return $next_level;
}
function nextlevelup($postnum,$user_levelnum){
$level = pow(log10 ($postnum), 3);//等级
if ($level<=0) $level =0;
$showlevel = ceil($level);
$nextlevelbilv=100*$postnum/$user_levelnum;
$levelup ="<table cellspacing=0 cellpadding=0 width=110 border=0>;<tbody>;<tr>;<td width=3 height=13>;<img height=13 src=images/img_left.gif width=3>;</td>;<td align=left width=104 background=images/img_backing.gif height=13>;<img height=13 src=images/img_fill.gif width=\"$nextlevelbilv%\" title='水位: $postnum/$user_levelnum({$showlevel}级)'>;</td>;<td width=3 height=13>;<img height=13 src=images/img_right.gif width=3>;</td>;</tr>;</tbody>;</table>;";
return $levelup;
}
/******************************************************************************/
function getLevel($username) {
global $bbs_title,$admintitle,$motitle,$adtitle,$admin_user,$admin_name,$nforum_admin;
if ($adtitle && in_array($username,$admin_user)) $level="[$bbs_title]$adtitle";
if ($admintitle && $username==$admin_name) $level="[$bbs_title]$admintitle";
if ($motitle) foreach($nforum_admin as $k=>;$value) if(in_array($username,$value)) {//提示这一行错误:Warning: Invalid argument supplied for foreach() in d:\phpforum\global.php on line 512
$forumname=getforumname($k);
if(empty($level)) $level="[$forumname]$motitle";
else $level.=" [$forumname]$motitle";
}
return $level;
}
/*******************************************************************************/
function getUserIcon($amount,$username) {
global $nforum_admin,$admin_name,$admin_user,$mgraphic,$mpostmark,$admingraphic,$modgraphic,$addgraphic;
$usericon=$mgraphic[0];
$count=count($mpostmark);
for ($i=1; $i<$count; $i++) if ($mpostmark[$i] && $amount>;=$mpostmark[$i]) $usericon=$mgraphic[$i];
if ($modgraphic) foreach($nforum_admin as $k=>;$value)
if(in_array($username,$value)) $usericon=$modgraphic;
if ($addgraphic && in_array($username,$admin_user)) $usericon=$addgraphic;
if ($admingraphic && $username==$admin_name) $usericon=$admingraphic;
return $usericon;
}
反正我每次调用这个global.php文件时用到foreach() 时就提示那个警告。
对了,我在首页文件index.php中还发现有这样的写法对不对啊?
<?=$tablewidth?>;————有许多这样的。 |
|