主页 > 知识库 > linux安装php扩展脚本分享

linux安装php扩展脚本分享

热门标签:地方门户网站 AI电销 网站排名优化 铁路电话系统 Linux服务器 服务外包 百度竞价排名 呼叫中心市场需求

测试环境:ubuntu 12.04 php 5.3.x

复制代码 代码如下:

#!/bin/bash
#Program:
# Accomplish to expand the specified function only one key
#History:
# 2013/11/15 pankai530911044@qq.com> first release
test ! -f ./ext_skel echo "The shell script of 'ext_skel' doesn't exist in current directory.\n" exit 0
[ ! -d "skeleton" ] echo "The directory of 'skeleton' doesn't exist in current directory.\n" exit 0
#include "./ext_skel"
read -p "Please input the extension name: " ext_name
#echo -e "hello $ext_name"

#The blank space is necessary
#Error:
#  like: if[ ! -d "$ext_name" ]; then
if [ ! -d "$ext_name" ]; then
 ./ext_skel --extname=$ext_name
fi
file="./$ext_name/config.m4"
copy="./$ext_name/config"
if [ ! -f "./$ext_name/configs" ]; then
 # Create a new file and clear it if it exists
 :> "$copy"
 cat "$file" | while read line
 #for line in $( cat ./zend/config.m4 )
 do
  string=$( echo $line | grep 'PHP_ARG_ENABLE' )
  if [ "$string" != ""  ]; then
   echo $line | cut -c5- >> $copy
   read line
   echo $line | cut -c5- >> $copy
   read line
   echo $line | cut -c5- >> $copy
   read line
  fi
  echo $line >> $copy
 done
 mv "$file" "./$ext_name/configs"
 mv "$copy" "./$ext_name/config.m4"
fi
cd $ext_name
phpize
./configure

您可能感兴趣的文章:
  • 如何使用Linux的Crontab定时执行PHP脚本的方法
  • 在PHP中运行Linux命令并启动SSH服务的例子
  • Linux下php5.4启动脚本

标签:黄山 湖南 仙桃 崇左 湘潭 铜川 兰州 衡水

巨人网络通讯声明:本文标题《linux安装php扩展脚本分享》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266