当前位置:Gxlcms > PHP教程 > 我需要一个依赖,但是不想用composer该怎么做才能够使用

我需要一个依赖,但是不想用composer该怎么做才能够使用

时间:2021-07-01 10:21:17 帮助过:2人阅读

"require": {
    "vrana/notorm": "dev-master"
},

我需要这个依赖,但是不想用composer怎么让他自动加载,能够正常使用

回复内容:

"require": {
    "vrana/notorm": "dev-master"
},

我需要这个依赖,但是不想用composer怎么让他自动加载,能够正常使用

直接下载 https://github.com/vrana/notorm

根据手册一步一步来。

不自动加载,只能手动加载了,就是 include

phpapplication()->order("title") as $application) { // get all applications ordered by title
    echo "$application[title]\n"; // print application title
    echo $application->author["name"] . "\n"; // print name of the application author
    foreach ($application->application_tag() as $application_tag) { // get all tags of $application
        echo $application_tag->tag["name"] . "\n"; // print the tag name
    }
}
?>

人气教程排行