当前位置 : 主页 > 网络编程 > PHP >

Symfony installer

来源:互联网 收集:自由互联 发布时间:2021-06-30
http://symfony.com/download http://www.chrisyue.com/symfony2-in-action-day-1.html 1. [代码] [PHP]代码 1、下载symfony.phar#php -r "readfile('http://symfony.com/installer');" symfony.phar查看选项#php symfony.phar2、用 symfony.pha
http://symfony.com/download

http://www.chrisyue.com/symfony2-in-action-day-1.html

1. [代码][PHP]代码    

1、下载symfony.phar

#php -r "readfile('http://symfony.com/installer');" > symfony.phar

查看选项

#php symfony.phar

2、用 symfony.phar 来创建一个项目。这里我们打算做一个新闻聚合类网站,项目就叫 news 

#php symfony.phar new news  (最新symfony3.xx)

To base your project on a specific Symfony version, append the version
number at the end of the command:

#php symfony.phar new news 2.8  (使用2.8版本创建)
网友评论