Home  >  Article  >  php教程  >  php获取参数的几种方法总结

php获取参数的几种方法总结

WBOY
WBOYOriginal
2016-06-06 20:24:501705browse

本篇文章要是对php获取参数的几种方法进行了总结介绍,需要的朋友可以过来参考下,希望对大家有所帮助

php获取参数的几种方法总结

$value = $_POST["value"];//取得post中的       

$value=$_REQUEST["value"];//取得get或者post中的参数(哪个有就取得哪个)       

$value=$_GET["value"];//取得get中的参数

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