search

Home  >  Q&A  >  body text

php 中 $id=$_POST['id'] 是什么意思?

小白小白3026 days ago1344

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:36:06

    What does $id=$_POST['id'] mean in php? - PHP Chinese website Q&A - What does $id=$_POST['id'] mean in php? - PHP Chinese website Q&A

    Take a look around, Study it.

    reply
    0
  • 迷茫

    迷茫2016-12-22 15:42:31

    php 中 $id=$_POST['id'] 表示变量$id值通过POST方法取得传递过来的id值。

    PHP中取得传值的方法主要有:get,post,request,其中get表示取得显性传值,安全性要求不高时用,post表接收隐性传值,安全性要求高时用(如:接收表单传值、用户登录时等),request包含get和post两种方法,是一种模糊概念,由服务器自动选择,一般较少用。


    reply
    1
  • Cancelreply