我继承了海外老承办商的代码。我看到的cakephp版本是:
CakePHP v 0.2.9
这适合哪里?它是在1.0之前还是2.0这个约定?
答案 0 :(得分:59)
可以在/path/to/cake/lib/Cake/VERSION.txt
中找到Cake 2.0的当前版本号。 txt文件包含一个注释块,其中包含文件描述(说明它自Cake 0.2.9以来就已存在),后跟实际版本号。
可以在/path/to/cake/cake/VERSION.txt
中的Cake 1.3中找到相同的文件。
以下是2.0.5 VERSION.txt
:
////////////////////////////////////////////////////////////////////////////////////////////////////
// +--------------------------------------------------------------------------------------------+ //
// CakePHP Version
//
// Holds a static string representing the current version of CakePHP
//
// CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
// Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
//
// Licensed under The MIT License
// Redistributions of files must retain the above copyright notice.
//
// @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
// @link http://cakephp.org
// @package cake.libs
// @since CakePHP(tm) v 0.2.9
// @license MIT License (http://www.opensource.org/licenses/mit-license.php)
// +--------------------------------------------------------------------------------------------+ //
////////////////////////////////////////////////////////////////////////////////////////////////////
2.0.5
答案 1 :(得分:38)
查找当前版本的最简单方法是
echo Configure::version();
答案 2 :(得分:1)
最好的方法是命令。\ cake版本这个cammand将显示你使用的cakephp版本。