Add migrations and seeders support
This commit is contained in:
43
core/app/Helpers/ClassHelper.php
Normal file
43
core/app/Helpers/ClassHelper.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace App\Helpers;
|
||||
|
||||
class ClassHelper
|
||||
{
|
||||
public static function extract($file)
|
||||
{
|
||||
$fp = fopen($file, 'r');
|
||||
$class = $namespace = $buffer = '';
|
||||
$i = 0;
|
||||
while (!$class) {
|
||||
if (feof($fp)) break;
|
||||
|
||||
$buffer .= fread($fp, 512);
|
||||
$tokens = token_get_all($buffer);
|
||||
|
||||
if (strpos($buffer, '{') === false) continue;
|
||||
|
||||
for (; $i < count($tokens); $i++) {
|
||||
if ($tokens[$i][0] === T_NAMESPACE) {
|
||||
for ($j = $i + 1; $j < count($tokens); $j++) {
|
||||
if ($tokens[$j][0] === T_STRING) {
|
||||
$namespace .= '\\' . $tokens[$j][1];
|
||||
} else if ($tokens[$j] === '{' || $tokens[$j] === ';') {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($tokens[$i][0] === T_CLASS) {
|
||||
for ($j = $i + 1; $j < count($tokens); $j++) {
|
||||
if ($tokens[$j] === '{') {
|
||||
$class = $tokens[$i + 2][1];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $namespace . '\\' . $class;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user