Browse Source

Refactoring Str class.

Taylor Otwell 13 years ago
parent
commit
c50246c694
1 changed files with 23 additions and 21 deletions
  1. 23 21
      system/str.php

+ 23 - 21
system/str.php

@@ -70,28 +70,8 @@ class Str {
     {
         $value = '';
 
-        // -----------------------------------------------------
-        // Get the proper character pool for the type.
-        // -----------------------------------------------------
-        switch ($type)
-        {
-            case 'alpha':
-                $pool = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
-                break;
-
-            default:
-                $pool = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
-        }
+        $pool_length = strlen($pool = static::pool($type)) - 1;
 
-        // -----------------------------------------------------
-        // Get the pool length and split the pool into an array.
-        // -----------------------------------------------------
-        $pool_length = strlen($pool) - 1;
-        $pool = str_split($pool, 1);
-
-        // -----------------------------------------------------
-        // Build the random string to the specified length.
-        // -----------------------------------------------------
         for ($i = 0; $i < $length; $i++)
         {
             $value .= $pool[mt_rand(0, $pool_length)];
@@ -100,4 +80,26 @@ class Str {
         return $value;
     }
 
+    /**
+     * Get a chracter pool.
+     *
+     * @param  string  $type
+     * @return string
+     */
+    private static function pool($type = 'alnum')
+    {
+        if ($type == 'alnum')
+        {
+            return '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
+        }
+        elseif ($type == 'alpha')
+        {
+            return 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
+        }
+        else
+        {
+            throw new \Exception("Unrecognized random pool [$type].");
+        }
+    }
+
 }