사용 URL: http://www.tp51.com/index/Demo/test/name=peter&sex=male
class 데모 확장 컨트롤러
{
public function test()
{
dump (( new Request())->get()); //dump($_GET)와 동일;
출력:
'/index/Demo3/test1/name' => string 'peter'(길이= 5) )
'sex' => 문자열 '남성'(길이=4)
~
}
}
또한 동일한 코드에 액세스하려면 다음 방법을 사용하세요.
URL: http ://www.tp51.com/index/Demo/test?name=peter&sex=male
코드 복사
출력:
array (size=3)
'/index/Demo/test' => string '' (length=0)
'name' => string 'peter' (length=5)
'sex' => string 'male' (length=4)
param() 메서드가 올바르게 출력됩니다. .
선생님들과 영웅들에게 도움을 요청하세요. 매개변수 설정이나 코드에 문제가 있나요?
감사합니다!정말 감사합니다!
또한 PHP5.1의 핵심 모듈과 구성 파일 정보는 변경하지 않았습니다.
링크에 문제가 있나요? http://www.tp51.com/index/Demo/test/name=peter&sex=male &를 연결하기 전에 & 기호 앞에 를 사용해야 하지 않나요? 매개변수로?