Zend SDK学习-1

学习一种工具,我想最应该先获得这个工具。如果工具我们有了,看下官方文档,再看一看入门 的例子,学一学工具相关的知识。这样的时候,一种工具就应该开始入门了。其它只要坚持学习修炼,加以时日,掌握一种工具只是时间的问题。

0.zend-sdk第一手学习资料

http://code.google.com/p/zend-sdk/

1.zend-sdk是什么?

  
  
  
  
  1. Zend SDK includes a variety of tools that help you create, develop, publish and discover PHP Web applications. 

Zend的SDK包括多种工具,帮助您创建开发,发布发现PHP Web应用程序

2.怎么安装zend-sdk?

下载zend-sdk命令行工具包

http://zend-sdk.googlecode.com/files/zend-sdk-cli-0.0.20-bin.zip

系统上要安装jdk,因为工具包是用java开发的.

3.怎么使用?

看下下载的工具包里有什么?

README

  
  
  
  
  1. Welcome to the Zend SDK! 
  2.   
  3. In order to start developing applications, you must add at least one 
  4. target container to host your application. You will then able to deploy 
  5. your applications and start developing with Zend SDK.    
  6.   
  7. From the command-line you can directly manage targets, projects, and   
  8. application repositories of the SDK, for more details execute
  9.   tools\zend help  

获得的信息就是可以用

  
  
  
  
  1. ./zend help 

命令查看下帮助

  
  
  
  
  1. Usage: 
  2.   zend action [action options] [global options] 
  3.  
  4. Global options: 
  5.   -v   Verbose mode: warning and debug messages are printed. 
  6.  
  7. Valid actions are composed of a verb and an optional direct object: 
  8. create     project         : Creates a new Zend project. 
  9. update     project         : Updates a Zend project. 
  10. - clone      project         : Clone project from git repository 
  11. - list       targets         : Lists known deployment target environments. 
  12. add        target          : Adds new target environment for deploying applications. 
  13. - remove     target          : Removes target from the know targets list. 
  14. - detect     target          : Detects target on localhost. 
  15. update     target          : Updates target's parameters. 
  16. - list       applications    : Lists applications installed on target. 
  17. - deploy     application     : Deploys application to target. 
  18. - redeploy   application     : Re-deploys application on target. 
  19. update     application     : Updates application to target. 
  20. - remove     application     : Removes application from target. 
  21. - discover   application     : discover new application from the repositories list. 
  22. create     package         : Creates deployment package. 
  23. add        repository      : Add repository to the discovery list. 
  24. - remove     repository      : Removes repository from the discovery list. 
  25. - list       repositories    : Show the list of repositories. 
  26. - generate   repository      : genertae a repository for a package 
  27. - help                       : shows help information. 

 

 

你可能感兴趣的:(PHP,职场,休闲,zend-sdk)