• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    linux安装php扩展脚本分享

    测试环境: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启动脚本
    上一篇:win下调用putty执行命令脚本分享
    下一篇:通过shell进行数学运算的多种方式
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    linux安装php扩展脚本分享 linux,安装,php,扩展,脚本,