functions.php 269 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\Filesystem;
  4. /**
  5. * 获取文件的URL
  6. * @param string $path 文件路径
  7. * @return string 文件URL
  8. */
  9. function file_url(string $path): string
  10. {
  11. return extension_config('filesystem', 'domain') . '/' . $path;
  12. }