zoukankan      html  css  js  c++  java
  • php常用扩展安装

    ####memcache

    wget http://pecl.php.net/get/memcache-2.2.7.tgz
    tar xf memcache-2.2.7.tgz
    cd memcache-2.2.7
    /usr/local/php/bin/phpize
    ./configure --with-php-config=/usr/local/php/bin/php-config
    make
    make install

    ####memcached

    wget http://pecl.php.net/get/memcached-2.1.0.tgz
    tar xf memcached-2.1.0.tgz
    cd memcached-2.1.0/
    /usr/local/php/bin/phpize
    ./configure --enable-memcached --with-php-config=/usr/local/php/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached
    make
    make install

     

     

    ###phalcon


    下载zip包 https://github.com/phalcon/cphalcon
    unzip cphalcon-master.zip
    cd /root/cphalcon-master/build/php5/64bits
    /usr/local/php/bin/phpize
    ./configure --with-php-config=/usr/local/php/bin/php-config
    make
    make install

    ###bcmath(其它扩展主要安装方法)

    cd 到扩展目录下进行编译


    cd /root/php-xx/ext/bcmath
    ./configure --with-php-config=/usr/local/php/bin/php-config
    make
    make install

  • 相关阅读:
    自定义标签的解析
    alias、beans标签的解析
    import标签的解析
    注册解析的BeanDefinition
    bean子元素的解析
    bean标签的解析
    注册BeanDefinitions
    Object类
    归并排序
    快速排序
  • 原文地址:https://www.cnblogs.com/zhangb8042/p/8435978.html
Copyright © 2011-2022 走看看