Heim >Backend-Entwicklung >PHP-Tutorial >传参奇怪问题【PHP Pchart addPoints方法】

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

WBOY
WBOYOriginal
2016-06-23 13:52:35930Durchsuche

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


回复讨论(解决方案)

骚,你换一个简单的啊,这个太复杂。。

自己犯二了。。。接分。

是够二的
addPoints 要求传入数组,你传字符串当然不行

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn