CURLStringFile.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. if (\PHP_VERSION_ID >= 70400 && extension_loaded('curl')) {
  11. /**
  12. * @property string $data
  13. */
  14. class CURLStringFile extends CURLFile
  15. {
  16. private $data;
  17. public function __construct(string $data, string $postname, string $mime = 'application/octet-stream')
  18. {
  19. $this->data = $data;
  20. parent::__construct('data://application/octet-stream;base64,'.base64_encode($data), $mime, $postname);
  21. }
  22. public function __set(string $name, $value): void
  23. {
  24. if ('data' !== $name) {
  25. $this->$name = $value;
  26. return;
  27. }
  28. if (is_object($value) ? !method_exists($value, '__toString') : !is_scalar($value)) {
  29. throw new \TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');
  30. }
  31. $this->name = 'data://application/octet-stream;base64,'.base64_encode($value);
  32. }
  33. public function __isset(string $name): bool
  34. {
  35. return isset($this->$name);
  36. }
  37. public function &__get(string $name)
  38. {
  39. return $this->$name;
  40. }
  41. }
  42. }