当前位置:首页 > 大杂烩 > 正文内容

ubuntu下安装php扩展,deepin下安装php扩展

高老师8年前 (2018-04-06)大杂烩2666

ubuntu下安装php扩展

个人电脑是deepin系统,基于ubuntu的国产操作系统,高端linux桌面端.安装lamp环境全部基于sudo apt-get工具.

非开发环境,特别喜欢一建安装.安装php扩展以下命令全部直接安装

apt-get install php-mcrypt;
apt-get install php-curl;
apt-get install php-gd; 
apt-get install php-mbstring;
apt-get install php-simplexml;
apt-get install php-sockets;
apt-get install php-redis;
apt-get install php-redis;
apt-get install php-mongodb;
apt-get install php-mysqli;
apt-get install php-memcache;
apt-get install php-mcrypt;

基本所有的扩展命令类似,自己测试,让安装扩展简单粗暴! 

扫描二维码推送至手机访问。

版权声明:本文由高久峰个人博客发布,如需转载请注明出处。

本文链接:https://blog.20230611.cn/post/509.html

分享给朋友:

“ubuntu下安装php扩展,deepin下安装php扩展” 的相关文章

Application的错误使用

Application的错误使用

Application 对象用于存储和访问来自任意页面的变量,类似 Session 对象。不同之处在于所有的用户分享一个 Application 对象,而 session 对象和用户的关系是一一对应的。很多的书籍中介绍的Application对象都喜欢以统计在线人数来介绍Application 对象...

Git从远程仓库更新文件

Git从远程仓库更新文件

 git   pull  https://git.oschina.net/392223903/learn.git   master   换为您的git地址...

Git日志查看和版本切换

Git日志查看和版本切换

日志查看:git log版本切换:方式1:git  reset  --hard  HEAD^   倒退一个版本git  reset  --hard  HEAD^^  倒退两个版本方式2:(版本号的形式,建议版本号码补充完...

c#关闭计算机的代码

c#关闭计算机的代码

    1.关机Process.Start("shutdown", "-s -t 0");    2. 注销  Proc...

IIS7.0无法加载CSS的处理办法

IIS7.0无法加载CSS的处理办法

首先网页全部是纯静态的文件,本地测试正常访问,服务器端无法加载CSS,并且无法查看CSS文件的内容。 解决方案:关闭网站的压缩->>静态压缩和动态压缩...

redis安装教程

redis安装教程

1.文件redis-2.6.14.tar.gz的上传 /home/john/创建rdtar文件夹 上传redis-2.6.14.tar.gz至rdtar文件夹  2.解压文件  cd /home/john/rdtar tar &n...