Heim >Backend-Entwicklung >PHP-Tutorial >FORM提交提示“需要进行省份验证”

FORM提交提示“需要进行省份验证”

WBOY
WBOYOriginal
2016-06-06 20:30:501101Durchsuche

FORM提交提示“需要进行省份验证”

回复内容:

FORM提交提示“需要进行省份验证”

是否在 php 中构建了正确的表单了呢?


<code><?php $bucket = 'youbucket'; /// 空间名
  $form_api_secret = 'yourapisecret';
  $options = array();
  $options['bucket'] = $bucket; /// 空间名
  $options['expiration'] = time()+600; /// 授权过期时间
  $options['save-key'] = '/{filename}{.suffix}';
  $policy = base64_encode(json_encode($options));
  $sign = md5($policy.'&'.$form_api_secret); 
?>


<form action="http://v0.api.upyun.com/<?php%20echo%20%24bucket?>/" method="post" enctype="Multipart/form-data">
    <input type="hidden" name="policy" value="<?php echo $policy?>">
    <input type="hidden" name="signature" value="<?php echo $sign?>">
    <input type="file" name="file">
    <input type="submit">
</form>



</code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn