我不知道如何在 Kohana 中包含和调用外部库。
我正在使用 Kohana,通过使用 composer 我已将 tmhOAuth 库加载到供应商文件夹。 Composer 说 - 自动加载器文件已创建,但我不知道 - Kohana 是否加载了该自动加载器文件。
自动加载路径 -> vendor/autoload.php
库文件的路径 -> vendor/themattharris/tmhoauth/tmhOAuth.php
1)我必须包括一些东西吗?如果是 - 什么?自动加载器文件或带有库类的文件?
2) 如何从我的 Controller 调用某个库的方法?
抱歉,我对 Kohana 很陌生。
最佳答案
最好使用 Kohana::find_file
:
require_once Kohana::find_file('vendor', 'autoload');
$tmh = new tmhOAuth();
关于php - 在 Kohana 加载和调用外部库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15750920/