文件名称:require-path-fixer:对于旧版php项目,将所有require语句(requirerequire_onceincludeinclude_path)修复为同类代码
文件大小:18KB
文件格式:ZIP
更新时间:2024-06-07 23:15:29
PHP
RequirePathFixer 旧版php项目具有大量的require语句(require / require_once / include / include_once)。 而且由于它们不是同质的,因此很难将它们全部收集起来。 该库搜索所有require语句,并将它们修改为同类代码。 // before require_once 'path/to/file.php' ; require_once __DIR__ . '/path/to/file.php' ; require_once dirname (__FILE__). '/path/to/file.php' ; require_once ( '../app_root/path/to/file.php' ); require_once ( 'path/' . 'to/'
【文件预览】:
require-path-fixer-master
----.gitignore(22B)
----src()
--------Exceptions()
--------Fixer()
--------Fixer.php(7KB)
----composer.json(538B)
----README.md(7KB)
----tests()
--------FixerTest.php(12KB)
--------Fixer()
--------fixtures()