You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
190 B
14 lines
190 B
5 years ago
|
<?php
|
||
|
|
||
|
header("Content-type:application/json");
|
||
|
|
||
|
if (isset($_POST["image"])) {
|
||
|
|
||
|
echo <<<EOF
|
||
|
{"msg":"合法图片参数"}
|
||
|
EOF;
|
||
|
} else {
|
||
|
echo <<<EOF
|
||
|
{"msg":"缺少图片参数"}
|
||
|
EOF;
|
||
|
}
|