Browse Source

added has_php helper.

Taylor Otwell 13 years ago
parent
commit
8b2f3e8421
1 changed files with 11 additions and 0 deletions
  1. 11 0
      laravel/helpers.php

+ 11 - 0
laravel/helpers.php

@@ -373,4 +373,15 @@ function value($value)
 function with($object)
 {
 	return $object;
+}
+
+/**
+ * Determine if the current version of PHP is at least the supplied version.
+ *
+ * @param  string  $version
+ * @return bool
+ */
+function has_php($version)
+{
+	return version_compare(PHP_VERSION, $version) >= 0;
 }