method="post" 和 enctype="text/plain" 不兼容
尝试使用以下表单时:
<form method="post" enctype="text/plain" action="proc.php">
您在成功将表单数据传输到“proc.php”文件时可能会遇到困难。是什么导致了这个问题,为什么“post”方法不能使用“text/plain”编码,而“get”方法可以使用?
解释:
PHP 无法使用“post”方法处理“text/plain”编码是这个问题的根源(而且这不是一个问题) bug):
https://bugs.php.net/bug.php?id=33741
对于“
以上是为什么 POST 不支持 `enctype='text/plain'` 而 GET 支持?的详细内容。更多信息请关注PHP中文网其他相关文章!