blade.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php namespace Laravel;
  2. class Blade {
  3. /**
  4. * Rewrites the specified file containing Blade pseudo-code into valid PHP.
  5. *
  6. * @param string $path
  7. * @return string
  8. */
  9. public static function parse($path)
  10. {
  11. return static::parse_string(file_get_contents($path));
  12. }
  13. /**
  14. * Rewrites the specified string containing Blade pseudo-code into valid PHP.
  15. *
  16. * @param string $value
  17. * @return string
  18. */
  19. public static function parse_string($value)
  20. {
  21. $value = static::echos($value);
  22. $value = static::openings($value);
  23. $value = static::closings($value);
  24. return $value;
  25. }
  26. /**
  27. * Rewrites Blade echo statements into PHP echo statements.
  28. *
  29. * @param string $value
  30. * @return string
  31. */
  32. protected static function echos($value)
  33. {
  34. return preg_replace('/\{\{(.+)\}\}/', '<?php echo $1; ?>', $value);
  35. }
  36. /**
  37. * Rewrites Blade structure openings into PHP structure openings.
  38. *
  39. * @param string $value
  40. * @return string
  41. */
  42. protected static function openings($value)
  43. {
  44. return preg_replace('/@(if|elseif|foreach|for|while)(\s*\(.*?\))\:/', '<?php $1$2: ?>', $value);
  45. }
  46. /**
  47. * Rewrites Blade structure closings into PHP structure closings.
  48. *
  49. * @param string $value
  50. * @return string
  51. */
  52. protected static function closings($value)
  53. {
  54. $value = preg_replace('/(\s*)@(else)(.*?)\:/', '$1<?php $2$3: ?>', $value);
  55. $value = preg_replace('/(\s*)@(endif|endforeach|endfor|endwhile)(\s*)/', '$1<?php $2; ?> $3', $value);
  56. return $value;
  57. }
  58. }