我想第一次在我的项目中使用 Slim for PHP。手册说:
Install composer in your project:
curl -s https://getcomposer.org/installer | php
Create a composer.json file in your project root:
{
"require": {
"slim/slim": "2.*"
}
}
Install via composer:
php composer.phar install
Add this line to your application’s index.php file:
<?php
require 'vendor/autoload.php';
恐怕,我不明白。应该在哪里使用命令“curl”和“php”?我只通过 Filezilla 访问我的网络空间。那么我该如何应用这样的命令?
这些步骤到底有什么作用?可悲的是,该手册根本没有帮助。