本帖最后由 dmdyxx 于 2017-5-12 16:19 编辑
一个php生成xml的页面
其他页面打开正常 就这个页面不支持
php代码
<?php
$lastNo=$this->getGameLastNo(26);
header('Content-type: application/xml');
echo'<?xml version="1.0" encoding="utf-8"?>';
echo '<xml><row expect="'.$lastNo['actionNo'].'" opencode="'.randKeys().'" opentime="'.$lastNo['actionTime'].'"/></xml>';
function randKeys($len=5){
$str='9038627451';
$rand='';
for($x=0;$x<$len;$x++){
$rand.=($rand!=''?',':'').substr($str,rand(0,strlen($str)-1),1);
}
return $rand;
}
?>
是缺少了php的模块还是系统环境的问题呢? 有大神给个解决方案吗
系统 centos6.6 X64 版本4.1
|
|