FileForm.php 304 B

12345678910111213141516
  1. <?php
  2. namespace AlibabaCloud\Tea\FileForm;
  3. class FileForm
  4. {
  5. public static function getBoundary()
  6. {
  7. return (string) (mt_rand(10000000000000, 99999999999999));
  8. }
  9. public static function toFileForm($map, $boundary)
  10. {
  11. return new FileFormStream($map, $boundary);
  12. }
  13. }