菜谱项目

SplFileInfo.php 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. namespace Symfony\Component\Finder;
  11. /**
  12. * Extends \SplFileInfo to support relative paths.
  13. *
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. */
  16. class SplFileInfo extends \SplFileInfo
  17. {
  18. private $relativePath;
  19. private $relativePathname;
  20. /**
  21. * @param string $file The file name
  22. * @param string $relativePath The relative path
  23. * @param string $relativePathname The relative path name
  24. */
  25. public function __construct($file, $relativePath, $relativePathname)
  26. {
  27. parent::__construct($file);
  28. $this->relativePath = $relativePath;
  29. $this->relativePathname = $relativePathname;
  30. }
  31. /**
  32. * Returns the relative path.
  33. *
  34. * This path does not contain the file name.
  35. *
  36. * @return string the relative path
  37. */
  38. public function getRelativePath()
  39. {
  40. return $this->relativePath;
  41. }
  42. /**
  43. * Returns the relative path name.
  44. *
  45. * This path contains the file name.
  46. *
  47. * @return string the relative path name
  48. */
  49. public function getRelativePathname()
  50. {
  51. return $this->relativePathname;
  52. }
  53. /**
  54. * Returns the contents of the file.
  55. *
  56. * @return string the contents of the file
  57. *
  58. * @throws \RuntimeException
  59. */
  60. public function getContents()
  61. {
  62. $level = error_reporting(0);
  63. $content = file_get_contents($this->getPathname());
  64. error_reporting($level);
  65. if (false === $content) {
  66. $error = error_get_last();
  67. throw new \RuntimeException($error['message']);
  68. }
  69. return $content;
  70. }
  71. }