Home >Backend Development >PHP Tutorial >七牛云存储 - 【已解决】ThinkPHP 如何引用第三方类库,比如七牛的phpsdk?

七牛云存储 - 【已解决】ThinkPHP 如何引用第三方类库,比如七牛的phpsdk?

WBOY
WBOYOriginal
2016-06-06 20:20:541861browse

ThinkPHP 如何引用第三方类库,比如七牛的phpsdk

ThinkPHP的官方文档是2012年的,有很多人说已经不对了。

谁知道,正确,标准的做法是如何引入?

回复内容:

ThinkPHP 如何引用第三方类库,比如七牛的phpsdk

ThinkPHP的官方文档是2012年的,有很多人说已经不对了。

谁知道,正确,标准的做法是如何引入?

  1. 用 composer 安装好 phpsdk

  2. 在 index.php 文件中添加一行

<code>require './vendor/autoload.php';

//ThinkPHP的框架入口文件
require( "./ThinkPHP/ThinkPHP.php");</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn