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 );
}
});