本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
php的Mcrypt扩展库的介绍
一 Mcrypt库常量
1、代码
<?php
$en_dir = mcrypt_list_algorithms(); //函数返回Mcrypt支持的加密算法数组
echo "Mcrypt支持的算法有:";
foreach($en_dir as $en_value){
echo $en_value." ";
}
? ...
apt-get install php5-mcrypt 扩展查不到问题解决
问题记录,以备后期查看。
利用apt-get安装PHP扩展mcrypt:
$ apt-get install php5-mcrypt
然后打印phpinfo() 查看不到该扩展,之前其他扩展没有类似问题的。
后来解决如下:
查看“Scan this dir for additional .ini files”项内容,确定查找扩展的目录,发现没 ...
centos7搭建lamp以及lavarel
下了centos7,重新开始搭lamp环境
几个坑,记录一下
1 centos7 ifconfig安装
http://my.oschina.net/u/1428349/blog/288708
2 yum安装的
http://www.cnblogs.com/ceocreator/archive/2011/04/07/2007500.html
3 思路 如果安装 ...
linux安装 MCrypt 模块
What is MCrypt?
MCrypt is a replacement for the old crypt() package and crypt(1)
command, with extensions. It allows developers to use a wide range of
encryption functions, without making drasti ...
PHP Mcrypt on CentOS 6
1.加入源
rpm -ivh http://download.fedora.redhat.com/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm
2.更新源
yum update
3.安装mcrypt
yum install php-mcrypt
请注意这个实例操作系统是 CentOS 6 x86_64
翻译自:htt ...