<?php /** * Created by PhpStorm. * User: JZ * Date: 2019/7/18 * Time: 17:33 */ class HttpMethod { /** * DELETE方法。 */ const DELETE = "delete"; /** * GET方法。 */ const GET = "get"; /** * HEAD方法。 */ const HEAD = "head"; /** * POST方法。 */ const POST = "post"; /** * PUT方法。 */ const PUT = "put"; /** * OPTION方法。 */ const OPTIONS = "option"; }