📜  [错误] InvalidArgumentException:C:\xampp\htdocs\magento2.4\lib\internal\Magento\Framework\Image\Adapter\Gd2.php:64 堆栈跟踪 - PHP 代码示例中的文件错误

📅  最后修改于: 2022-03-11 14:54:47.293000             🧑  作者: Mango

代码示例1
private function validateURLScheme(string $filename) : bool
  {
      $allowed_schemes = ['ftp', 'ftps', 'http', 'https'];
      $url = parse_url($filename);
      if ($url && isset($url['scheme']) && !in_array($url['scheme'], $allowed_schemes) && !file_exists($filename)) {
          return false;
      }

      return true;
  }