$result = \file_get_contents('php://input');
解决方法:Form表单的Content-Type应设置为application/x-www-form-urlencoded(默认),不能是multipart/form-data
$result = \file_get_contents('php://input');
解决方法:Form表单的Content-Type应设置为application/x-www-form-urlencoded(默认),不能是multipart/form-data