Home >Backend Development >PHP Tutorial > php带参数怎么按照参数来执行具体的代码。

php带参数怎么按照参数来执行具体的代码。

WBOY
WBOYOriginal
2016-06-13 12:52:051007browse

php带参数如何按照参数来执行具体的代码。。
比如,我有网页
test.php
后面带一个参数test.php?1, test.php?2,test.php?3,test.php?4,test.php?5,

我现在通过获取url后面?后面的参数。
来执行具体的代码。求代码。。好像和asp写法不一样。。

获取参数。
然后
如果=1
执行 1相关的代码

如果等于2 执行2的相关代码
………………
如果等于5,执行5的相关代码

如果都不等于12345,那么就提示,参数错误
求代码,本人菜鸟。。

php url
------解决方案--------------------
<br />
如果没有用url重写,则用$_SERVER['QUERY_STRING']获取 1、2、3等参数<br />
如果用了url重写,则用$_GET['参数名']获取1、2、3等参数<br />
假如获取的参数为 $action<br />
switch($action)<br />
{<br />
 case '1':...;break;<br />
 case '2':...;break;<br />
 case '3':...;break;<br />
 case '4':...;break;<br />
 case '5':...;break;<br />
 default:...;break;<br />
}<br />
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