作用:判断当前是否为 GET 请求。 语法: boolean is_get()
GET
boolean is_get()
返回值:
true
false
示例:
<?php if(!is_get()){ echo '请使用 GET 方式来获取数据'; }