PHP_VERSION_ID是一個整數,表示當前PHP的版本,從php5.2.7版本開始使用的,比如50207表示5.2.7。和PHP版本相關的巨集定義在文件 phpsrcdir/main/php_version.h里,如下 // 文件位置: phpsrc/main/php_version.h /* ...
PHP_VERSION_ID是一個整數,表示當前PHP的版本,從php5.2.7版本開始使用的,比如50207表示5.2.7。
和PHP版本相關的巨集定義在文件 phpsrcdir/main/php_version.h里,如下
// 文件位置: phpsrc/main/php_version.h /* automatically generated by configure */ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 6 #define PHP_RELEASE_VERSION 24 #define PHP_EXTRA_VERSION "" #define PHP_VERSION "5.6.24" #define PHP_VERSION_ID 50624
從註釋可以看到,文件phpsrcdir/main/php_version.h是在configure後生成的,以下是configure.in下的相關內容:
dnl 文件位置:phpsrcdir/confiugre.in 117 #undef PTHREADS 118 ]) 119 120 PHP_MAJOR_VERSION=5 121 PHP_MINOR_VERSION=6 122 PHP_RELEASE_VERSION=24 123 PHP_EXTRA_VERSION="" 124 PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION" 125 PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION` 126 127 dnl Allow version values to be used in Makefile 128 PHP_SUBST(PHP_MAJOR_VERSION) 129 PHP_SUBST(PHP_MINOR_VERSION) 130 PHP_SUBST(PHP_RELEASE_VERSION) 131 PHP_SUBST(PHP_EXTRA_VERSION) .... .... 139 dnl Setting up the PHP version based on the information above. 140 dnl ------------------------------------------------------------------------- 141 142 echo "/* automatically generated by configure */" > php_version.h.new 143 echo "/* edit configure.in to change version number */" >> php_version.h.new 144 echo "#define PHP_MAJOR_VERSION $PHP_MAJOR_VERSION" >> php_version.h.new 145 echo "#define PHP_MINOR_VERSION $PHP_MINOR_VERSION" >> php_version.h.new 146 echo "#define PHP_RELEASE_VERSION $PHP_RELEASE_VERSION" >> php_version.h.new 147 echo "#define PHP_EXTRA_VERSION \"$PHP_EXTRA_VERSION\"" >> php_version.h.new 148 echo "#define PHP_VERSION \"$PHP_VERSION\"" >> php_version.h.new 149 echo "#define PHP_VERSION_ID $PHP_VERSION_ID" >> php_version.h.new 150 cmp php_version.h.new $srcdir/main/php_version.h >/dev/null 2>&1 151 if test $? -ne 0 ; then 152 rm -f $srcdir/main/php_version.h && mv php_version.h.new $srcdir/main/php_version.h && \ 153 echo 'Updated main/php_version.h' 154 else 155 rm -f php_version.h.new 156 fi 157 158
由以上可以看到php的版本信息是在configure.in中定義的,
120-125行
首先定義了主版本號PHP_MAJOR_VERSION,子版本號PHP_MINOR_VERSION,發佈版本號PHP_RELEASE_VERSION,還有PHP_EXTRA_VERSION為空;
PHP_VERSION由以上的版本號用符號”.”連接起來,也就是我們常見的版本號,如5.6.24;
PHP_VERSION_ID則是由PHP_MAJOR_VERSION*10000+PHP_MINOR_VERSION*100+PHP_RELEASE_VERSION計算出來的一個5位數的整數,比如50624, 在php內核或者擴展源碼里經常用到PHP_VERSION_ID。
127-131行
提交給Makefile
139-156行
生成文件$phpsrcdir/main/php_version.h
php內核定義的所有常量:http://php.net/manual/en/reserved.constants.php
文章地址:PHP_VERSION_ID是如何定義的