! ) Strict standards: Only variables should be passed by reference in D:\wamp\www\index2.php on line 148 Call Stack
! ) Strict standards: Only variables should be passed by reference in D:\wamp\www\index2.php on line 148
Call Stack
! ) Strict standards: Only variables should be passed by reference in D:\wamp\www\index2.php on line 148
Call Stack
2015-02-12
//得到文件扩展名
$ext=strtolower(end(explode(".",$value)));
$imageExt=array("gif","jpg","jpeg","png");
if(in_array($ext,$imageExt)){
?>
<a href="#" onclick="showDetail('<?php echo $value;?>','<?php echo $p;?>')"><img class="small" src="images/show.png" alt="" title="查看"/></a>|
<?php
}else{
?>
<a href="index2.php?act=showContent&path=<?php echo $path;?>&filename=<?php echo $p;?>" ><img class="small" src="images/show.png" alt="" title="查看"/></a>|
<?php }?>举报