Learning PHP Day1(PHP 超级全局变量、魔术变

2019-01-31  本文已影响0人  chuaa

1. PHP 超级全局变量

1.1 $_SERVER里面有的键值对(假设访问localhost:80/test/index.php?id=100)

1.2 $_GET

假设访问localhost:80/new/post.php?a=12&b=1333

<?php
print_r($_GET);  // Array ( [a] => 12 [b] => 1333 ) 
?>

1.3 $_POST

$_POST 被广泛应用于收集表单数据,在HTML form标签的指定该属性:"method="post"。


2. 魔术变量

上一篇 下一篇

猜你喜欢

热点阅读