如何检测是否设置了 $_POST?

How to detect if $_POST is set?(如何检测是否设置了 $_POST?)
本文介绍了如何检测是否设置了 $_POST?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何检测是否设置了 $_POST.

I want to know how to detect if $_POST is set or not.

现在我是这样检测的:

if(isset($_POST['value']))

但我不再关注是否设置了值.基本上,任何 POST 都可以.

But I'm not looking if value is set anymore. Basically, any POST will work.

if(isset($_POST))

我不确定 PHP 是如何处理的.Perhabs isset($_POST) 总是返回 true,因为它是 PHP 全局的?

I'm not sure how PHP handle this. Perhabs isset($_POST) is always returns true since it's a PHP global?

基本上,我该怎么做?

推荐答案

尝试:

if ( $_SERVER['REQUEST_METHOD'] == 'POST' ) {}

检查您的脚本是否已发布.

to check if your script was POSTed.

如果传递了额外的数据,$_POST 不会为空,否则会.

If additional data was passed, $_POST will not be empty, otherwise it will.

您可以使用 empty 方法来检查它是否包含数据.

You can use empty method to check if it contains data.

if ( !empty($_POST) ) {}

这篇关于如何检测是否设置了 $_POST?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)