php dna
1.0.0
有两种安装 php-dna 的方法。
要使用composer在项目中安装php-dna,只需将以下require行添加到项目的composer.json
文件中:
{
"require": {
"familytree365/php-dna": "1.0.*"
}
}
如果您不使用 Composer,您可以从 GitHub 下载源代码存档并将其解压到您的项目中。您需要为文件设置自动加载器,除非您需要一一需要所有需要的文件,从而经历艰苦的过程。像下面这样的东西就足够了:
spl_autoload_register ( function ( $ class ) {
$ pathToDna = __DIR__ . ' /library/ ' ; // TODO FIXME
if (! substr ( ltrim ( $ class , '\' ), 0 , 7 ) == ' Dna \' ) {
return ;
}
$ class = str_replace ( '\' , DIRECTORY_SEPARATOR , $ class ) . ' .php ' ;
if ( file_exists ( $ pathToDna . $ class )) {
require_once ( $ pathToDna . $ class );
}
});