3

我不知道如何在 Kohana 包含和调用外部库。

我正在使用 Kohana,通过使用作曲家我已将tmhOAuth库加载到供应商文件夹。作曲家说 - 自动加载器文件已创建,但我不知道 - Kohana 是否加载了该自动加载器文件。

自动加载路径-> vendor/autoload.php
库文件路径 -> vendor/themattharris/tmhoauth/tmhOAuth.php

1)我必须包括一些东西吗?如果是 - 什么?自动加载器文件或带有库类的文件?2)如何从我的控制器调用一些库的方法?

抱歉,我对 Kohana 很陌生。

4

2 回答 2

5

更好用Kohana::find_file

require_once Kohana::find_file('vendor', 'autoload');
$tmh = new tmhOAuth();
于 2013-04-03T22:43:27.313 回答
2

这篇文章帮助我解决了这个问题

include_once './vendor/autoload.php';
$tmh = new tmhOAuth();
于 2013-04-01T20:30:11.777 回答