Home  >  Article  >  Backend Development  >  传参奇怪有关问题【PHP Pchart addPoints方法】

传参奇怪有关问题【PHP Pchart addPoints方法】

WBOY
WBOYOriginal
2016-06-13 12:03:56978browse

传参奇怪问题【PHP Pchart addPoints方法】

//获取URL传递过来的参数<br />    for($i=0;$i<=30;$i++){ <br />     $countinfo[$i]=$_GET["_URL_"][$i+3];<br />    }<br />    $str=join(",",$countinfo);<br />    //组合成字符串,得到5,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 <br />    //统计浏览量<br />    $MyData->addPoints(array(<br />    $countinfo['0'],$countinfo['1'],<br />    $countinfo['2'],$countinfo['3'],<br />    $countinfo['4'],$countinfo['5'],<br />    $countinfo['6'],$countinfo['7'],<br />    $countinfo['8'],$countinfo['9'],<br />    $countinfo['10'],$countinfo['11'],<br />    $countinfo['12'],$countinfo['13'],<br />    $countinfo['14'],$countinfo['15'],<br />    $countinfo['16'],$countinfo['17'],<br />    $countinfo['18'],$countinfo['19'],<br />    $countinfo['20'],$countinfo['21'],<br />    $countinfo['22'],$countinfo['23'],<br />    $countinfo['24'],$countinfo['25'],<br />    $countinfo['26'],$countinfo['27'],<br />    $countinfo['28'],$countinfo['29'],<br />    $countinfo['30']),"当月浏览统计表");
这样的话可以正常显示,我把$countinfo数组组合成一个字符串$str,但是传递进去就显示不正常了。如下图: 正常的时候:,不正常的时候:,涉及到大类类似传参,必须解决啊,不然这样写代码,还不让崩溃死【因为我调用的是public function DPchart(){}方法,他打印不出来数组,基于TP开发的】
------解决方案--------------------
骚,你换一个简单的啊,这个太复杂。。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn