PHP外部变量的具体含义解析
对于初学PHP语言的新手来说,对于变量的理解还是比较模糊。希望大家能够通过这篇文章对PHP外部变量有一个详细的了解,加深对PHP语言的理解。
PHP外部变量示例代码:
- < form action=”one.php”
- method=”get”>
- User:< input type=”text”
- name=”username”>< br>
- Password< input type=”password”
- name=”pass”>< br>
- < input type=”submit” values “OK”>
- < /form>
< ?php Echo “user”; Echo $_get[“username”]; ?>
$_get 只能接受get方法发送回来的数据
$_post 只能接受post方法发送回来的数据
$_request 可以接受所有方法发送回来的数据
也可以直接传递,PHP外部变量之间用&隔开。
<a href=”one.php?name=hello&pass=hello”>hello</a> 这种相当于get方法传递。
最好用$_get 或者$_request接收。
还有其他的PHP外部变量
$_files
$_cookie
相关推荐
xuebingnan 2020-11-05
Crazyshark 2020-09-15
zyyjay 2020-11-09
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23