Detaillierte Einführung in PHP-Parameter

黄舟
Freigeben: 2023-03-07 06:50:01
Original
3563 Leute haben es durchsucht

Detaillierte Einführung der PHP--Parameter

[root@lnmp01 tools]# tar xf php-5.3.27.tar.gz解压压缩包
[root@lnmp01 tools]# cd php-5.3.27 进入php安装目录
./configure 编译参数
–prefix=/application/php5.3.27 指定php的安装路径为/application/php5.3.27
–with-mysql=/application/mysql/
Nach dem Login kopieren

Sie müssen den Installationspfad von MySQL angeben und den für PHP erforderlichen MySQL-bezogenen Inhalt installieren. Wenn Sie nicht über das MySQL-Softwarepaket verfügen, müssen Sie es natürlich nicht separat installieren. In diesem Fall können Sie –with-mysql=mysqlnd anstelle von –with-mysql=/application/mysql verwenden Die PHP-Software enthält bereits ein Client-Tool für die Verbindung zu MySQL. 

–with-iconv-dir=/usr/local/libiconv    libiconv库,各种字符集间的转换
–with-freetype-dir    打开对freetype字体库支持
–with-jpeg-dir 打开对jpeg图片的支持
–with-png-dir 打开对png图片的支持
–with-zlib 打开zlib库的支持,用于http压缩传输
–with-libxml-dir=/usr 打开libxml2库的支持
–enable-xml    
–disable-rpath 关闭额外的运行库文件
–enable-safe-mode 打开安全模式
–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块
–enable-shmop 
–enable-sysvsem 使用sysv信号机制,则打开此选项
–enable-inline-optimization 优化线程
–with-curl 打开curl浏览工具的支持
–with-curlwrappers 运维curl工具打开url流
–enable-mbregex     
–enable-mbstring 支持mbstring
–with-mcrypt 编码函数库
–with-gd 打开gd库的支持
–enable-gd-native-ttf 支持TrueType字符串函数库
–with-openssl openssl的支持,加密传输时用到
–with-mhash mhash算法的扩展
–enable-pcntl freeTDS需要用到,可能是链接mssql
–enable-sockets 打开sockets支持
–with-xmlrpc 打开xml-rpc的c语言
–enable-zip 打开对zip的支持
–enable-soap soap模块的扩展
–enable-short-tags 开始和标记函数
–enable-zend-multibyte 支持zend的多字节
–enable-static 生成静态链接库
–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件
–enable-ftp    打开ftp的支持
–enable-fpm    表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。
–with-fpm-user=www    指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。
–with-fpm-group=www    指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。
[root@lnmp01 php]# ln -s /application/mysql/lib/libmysqlclient.so.18  /usr/lib64/ 软链接
[root@lnmp01 php]# touch ext/phar/phar.phar 创建php安装需要文件
[root@lnmp01 php]# make && make install 编译安装
[root@lnmp01 php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)
[root@lnmp01 php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件
[root@lnmp01 php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件
[root@lnmp01 php]# /application/php/sbin/php-fpm 启动php-fpm
Nach dem Login kopieren

Das obige ist der detaillierte Inhalt vonDetaillierte Einführung in PHP-Parameter. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!