17

海外の古い業者からコードを受け継いでいます。私が見るcakephpのバージョンは次のとおりです。

CakePHP v 0.2.9

これはどこに当てはまりますか?それは 1.0 よりも前のものですか、それとも 2.0 の規則ですか?

4

3 に答える 3

59

Cake 2.0の現在のバージョン番号は、にあり/path/to/cake/lib/Cake/VERSION.txtます。txtファイルには、ファイルの説明(Cake 0.2.9以降に存在していることを示す)とそれに続く実際のバージョン番号を含むコメント付きのブロックが含まれています。

同じファイルがのCake1.3にあり/path/to/cake/cake/VERSION.txtます。

以下は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
于 2012-04-05T06:36:34.493 に答える
38

現在のバージョンを見つける最も簡単な方法は

echo Configure::version();
于 2012-04-05T07:54:29.627 に答える