windows上如何编译最新发布的php?
回复内容:
windows上如何编译最新发布的php?
Windows上编译安装PHP教程请看:
https://wiki.php.net/internals/windows/stepbystepbuild
以5.4为例:
PHP 5.4(源代码+依赖库+SDK工具) + Visual Studio 2008 + Windows SDK 6.1
http://windows.php.net/downloads/releases/php-5.4.45-src.zip
http://windows.php.net/downloads/php-sdk/deps-5.4-vc9-x86.7z
http://windows.php.net/downloads/php-sdk/php-sdk-binary-tools-20110915.zip
https://www.microsoft.com/en-us/download/details.aspx?id=11310 (启动Windows SDK 6.1安装程序后,需要下载1.2G的数据和3GB的磁盘空间)
http://download.microsoft.com/download/E/8/E/E8EEB394-7F42-4963-A2D8-29559B738298/VS2008ExpressWithSP1ENUX1504728.iso 英文版
http://download.microsoft.com/download/3/0/2/3025EAE6-2E15-4972-972A-F5B1ED248E85/VS2008ExpressWithSP1CHSX1504735.iso 中文版
注意顺序!先安装Windows SDK 6.1及其service packs和security updates,
然后安装Visual Studio 2008 Express Edition SP1(运行Setup.hta,选择安装Visual C++ 2008).
开始菜单打开 Windows SDK v6.1 CMD shell 执行 setenv /x86 /xp /release
创建目录C:\php-sdk,并把php-sdk-binary-tools解压到这个目录.
cd C:\php-sdk\
bin\phpsdk_buildtree.bat phpdev
把PHP源代码解压到C:\php-sdk\phpdev\vc9\x86,比如:
C:\php-sdk\phpdev\vc9\x86\php-5.4.45-src
把deps-5.4-vc9-x86.7z解压到
C:\php-sdk\phpdev\vc9\x86\deps
开始编译:
cd C:\php-sdk\
bin\phpsdk_setvars.bat (设置环境变量,否则configure时会提示找不到bison之类的工具)
cd C:\php-sdk\phpdev\vc9\x86\php-5.4.45-src
buildconf
如果出现 输入错误: 没有文件扩展“.js”的脚本引擎。
regedit 把 [HKEY_CLASSES_ROOT\.js] 项下的那个默认值改成JSFile
重新执行 buildconf 就可以生成 configure.js 了.
configure --help
configure --disable-zts --disable-all --enable-cli
执行 nmake 编译, 编译后生成的二进制文件位于:
C:\php-sdk\phpdev\vc9\x86\php-5.4.45-src\Release
运行 nmake snap 打包:
C:\php-sdk\phpdev\vc9\x86\php-5.4.45-src\Release\php-5.4.45-nts-Win32-VC9-x86.zip
重新编译:
nmake clean 清除旧的二进制文件
rd /s /q Release
buildconf --force 生成新的configure.js脚本
configure --disable-zts --disable-all --enable-cli
nmake
解压即用,跨Linux发行版PHP7打包(附编译打包方法)
https://wiki.php.net/phpng
<code>#安装编译PHP依赖的开发工具和库: sudo apt-get install \ build-essential \ autoconf \ libtool \ re2c \ libxml2-dev \ openssl \ libcurl4-openssl-dev \ libbz2-dev \ libjpeg-dev \ libpng12-dev \ libfreetype6-dev \ libldap2-dev \ libmcrypt-dev \ libmysqlclient-dev \ libxslt1-dev \ libxt-dev \ libpcre3-dev \ libxpm-dev \ libt1-dev \ libgmp-dev \ libpspell-dev \ librecode-dev \ libreadline6-dev #配置脚本 configure_php.sh #!/bin/bash ./configure \ --prefix=/png/php/7.0.0 \ --enable-opcache \ --enable-fpm \ --enable-pdo \ --enable-sockets \ --enable-exif \ --enable-soap \ --enable-ftp \ --enable-wddx \ --enable-pcntl \ --enable-soap \ --enable-bcmath \ --enable-mbstring \ --enable-dba \ --enable-gd-native-ttf \ --enable-gd-jis-conv \ --enable-zip \ --enable-calendar \ --enable-shmop \ --enable-sysvmsg \ --enable-sysvsem \ --enable-sysvshm \ --with-mysqli \ --with-pdo-mysql \ --with-pdo-sqlite \ --with-iconv \ --with-gmp \ --with-pspell \ --with-xmlrpc \ --with-openssl \ --with-mhash \ --with-mcrypt \ --with-xsl \ --with-curl \ --with-pcre-regex \ --with-gd \ --with-jpeg-dir=/usr \ --with-png-dir=/usr \ --with-zlib-dir=/usr \ --with-xpm-dir=/usr \ --with-freetype-dir=/usr \ --with-gettext=/usr \ --with-zlib=/usr \ --with-bz2=/usr \ --with-recode=/usr \ --with-ldap \ --with-pear \ --with-readline \ --with-fpm-user=png \ --with-fpm-group=png \ --with-apxs2=/png/httpd/2.4.17/bin/apxs #编译安装 make && make install</code>
官网目前还没有提供编译好的版本,而目前官方可下载的源码也不是支持Windows的,不过PHP源码库中有Windows编译的内容。
送个地址,官方编译的DLL地址,目前最新的是 7.0 RC8 的版本
http://windows.php.net/qa/
如果是Linux编译环境或者Mac OS X环境,可以参考我的文章http://segmentfault.com/a/1190000004065931

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Mac version
God-level code editing software (SublimeText3)

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
