0
我是PHP和Symfony的新手,我似乎沒有使用Filesystem Component權限。 我遵循官方文檔,發現在: https://symfony.com/doc/current/components/using_components.html 並試圖安裝它,但我只是沒有得到我應該寫代碼的地方。Symfony 3文件系統組件
文檔說:
一旦作曲家已下載的組件上,所有你需要做的是包括由作曲家所產生的供應商/ autoload.php文件。該文件負責自動加載的所有庫,讓您可以立即使用的:
// File example: src/script.php
// update this to the path to the "vendor/"
// directory, relative to this file
require_once __DIR__.'/../vendor/autoload.php';
use Symfony\Component\Finder\Finder;
$finder = new Finder();
$finder->in('../data/');
// ...
,但我在哪裏要改變這一行?供應商/ autoload.php中的 ?感謝任何幫助:)
變化究竟是什麼? –