http://tp3.top/index.php/home/Test/index/a/1/b/2/c/3/d/4/e/5/f/6/g/7/h/8/i/9/j/10/k/11/l/12/t/13/n/14/r/15/u/16/w/17/s/18/
获取不到URL中的a,c两个参数的值
<?php
namespace Home\Controller;
use Think\Controller;
class TestController extends Controller
{
function index($a,$b,$c,$d,$e,$f,$g,$h,$i,$j,$k,$l,$t,$n,$r,$u,$w,$s){
echo $a."<br>";
echo $b."<br>";
echo $c."<br>";
echo $d."<br>";
echo $e."<br>";
echo $f."<br>";
echo $g."<br>";
echo $h."<br>";
echo $i."<br>";
echo $j."<br>";
echo $k."<br>";
echo $l."<br>";
echo $t."<br>";
echo $n."<br>";
echo $r."<br>";
echo $u."<br>";
echo $w."<br>";
echo $s."<br>";
}
} 最佳答案