php符串怎么连接,01和falsetrue有什么区别?
不加特别处理的话,通常0、1等于false 、true,可以互相代替的。极特别情况下需要严格区分的话,可以用全等于来判断:=== 当然另外大于0的都当作true
php字符串太长怎么加密缩短?
可以通过以下加密方法加密:
分别是md5、base64_encode()、urlencode() ,相对应的解密函数:base64_decode() 、urldecode(),这样太长的字符串缩短到32或64位
什么运算符是PHP中使用较多的运算符?
=>在php中属于其它运算符,用于给数组元素赋值。 php 中的运算符有: 算术运算符(+ 、、* 、/ 、%)
赋值运算符(= 、 += 、 -= 、 *= 、 /= 、%= 、.=等) 字符运算符(.) 位运算符(>> 、<< 、& 、^ 、~ 、 | ) 关系运算符(== 、!= 、> 、< 、>= 、<= 、 ?:) 自增,自减运算符(++ 、 --); 其它运算符($ 、& 、 @ 、-> 、 => 等)
php怎么将数据导入redis?
开始在PHP中使用redis前,要确保已经安装了redis服务及PHPredis驱动,且你的机器上能正常使用PHP。
PHP安装redis扩展
/usr/local/php/bin/phpize#php安装后的路径
./configure--with-php-config=/usr/local/php/bin/php-config
make&&makeinstall
修改php.ini文件
vi/usr/local/php/lib/php.ini
增加如下内容:
extension_dir="/usr/local/php/lib/php/extensions/no-debug-zts-20090626"
extension=redis.so
安装完成后重启php-fpm或apache。查看phpinfo信息,就能看到redis扩展。
连接到redis服务
<?php
//连接本地的Redis服务
$redis=newRedis();
$redis->connect('127.0.0.1',6379);
echo"Connectiontoserversucessfully";
//查看服务是否运行
echo"Serverisrunning:".$redis->ping();
?>
执行脚本,输出结果为:
Connectiontoserversucessfully
Serverisrunning:PONG
RedisPHPString(字符串)实例
<?php
//连接本地的Redis服务
$redis=newRedis();
$redis->connect('127.0.0.1',6379);
echo"Connectiontoserversucessfully";
//设置redis字符串数据
$redis->set("tutorial-name","Redistutorial");
//获取存储的数据并输出
echo"Storedstringinredis::".jedis.get("tutorial-name");
?>
执行脚本,输出结果为:
Connectiontoserversucessfully
Storedstringinredis::Redistutorial
RedisPHPList(列表)实例
<?php
//连接本地的Redis服务
$redis=newRedis();
$redis->connect('127.0.0.1',6379);
echo"Connectiontoserversucessfully";
//存储数据到列表中
$redis->lpush("tutorial-list","Redis");
$redis->lpush("tutorial-list","Mongodb");
$redis->lpush("tutorial-list","Mysql");
//获取存储的数据并输出
$arList=$redis->lrange("tutorial-list",0,5);
echo"Storedstringinredis::"
print_r($arList);
?>
执行脚本,输出结果为:
Connectiontoserversucessfully
Storedstringinredis::
Redis
Mongodb
Mysql
RedisPHPKeys实例
<?php
//连接本地的Redis服务
$redis=newRedis();
$redis->connect('127.0.0.1',6379);
echo"Connectiontoserversucessfully";
//获取数据并输出
$arList=$redis->keys("*");
echo"Storedkeysinredis::"
print_r($arList);
?>
执行脚本,输出结果为:
Connectiontoserversucessfully
Storedstringinredis::
tutorial-name
tutorial-list
php变量赋值加单引号还是双引号?
在赋予一个string值的时候,可以用单引号或者双引号。
1.单引号和双引号的区别:
单引号:不会翻译变量。
双引号:会翻译变量,会将变量替换为之前赋予变量的值。