Mkdir.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace inter\utils;
  3. class Mkdir
  4. {
  5. private string $namespace;
  6. private string $path;
  7. private array $pathArr;
  8. public function __construct($namespace)
  9. {
  10. $this->namespace = $namespace;
  11. }
  12. public function Namespace2PathArr(): array
  13. {
  14. $this->namespace2();
  15. return $this->pathArr;
  16. }
  17. public function Namespace2Path(): string
  18. {
  19. $this->namespace2();
  20. return $this->path;
  21. }
  22. public function mkdirByNamespace()
  23. {
  24. $this->Namespace2Path();
  25. if (empty($this->path)) return;
  26. $path = "";
  27. foreach ($this->Namespace2PathArr() as $tmp) {
  28. if (empty($tmp)) continue;
  29. $path .= ("/" . $tmp . "/");
  30. $path = trim($path, '/');
  31. if (!file_exists($path)) {
  32. mkdir($path);
  33. }
  34. }
  35. }
  36. protected function namespace2()
  37. {
  38. if (empty($this->path)) {
  39. $this->path = trim(str_replace("\\", "/", $this->namespace), ' ');
  40. $this->pathArr = explode("/", $this->path);
  41. }
  42. }
  43. }