Maison > développement back-end > tutoriel php > 可以不通过composer来使用依赖吗

可以不通过composer来使用依赖吗

PHPz
Libérer: 2020-09-05 13:33:26
original
1926 Les gens l'ont consulté

可以不通过composer来使用依赖,其实现方法就是通过“include”方法手动加载相关依赖即可,具体代码语法为“include "NotORM.php";”。

可以不通过composer来使用依赖吗

可以不通过composer来使用依赖吗?

问题:

"require": {
    "vrana/notorm": "dev-master"
},
Copier après la connexion

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

方法:

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

根据手册一步一步来。

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

<?php
include "NotORM.php";
$connection = new PDO("mysql:dbname=software");
$software = new NotORM($connection);
foreach ($software->application()->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
    }
}
?>
Copier après la connexion

推荐教程:《composer

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal