php下仿javascript加密解密代码
[ 2010-12-02 21:38:39 | 作者: admin ]
JavascriptEscape.php
阅读全文…
<?php
function jsescape($str){
preg_match_all( "/[\x80-\xff].|[\x01-\x7f]+/ ",$str,$newstr);
$ar = $newstr[0];
foreach($ar as $k=> $v){
if(ord($ar[$k])>=127){
$tmpString=bin2hex(iconv( "GBK", "ucs-2",$v));
if (!eregi( "WIN",PHP_OS)){
...function jsescape($str){
preg_match_all( "/[\x80-\xff].|[\x01-\x7f]+/ ",$str,$newstr);
$ar = $newstr[0];
foreach($ar as $k=> $v){
if(ord($ar[$k])>=127){
$tmpString=bin2hex(iconv( "GBK", "ucs-2",$v));
if (!eregi( "WIN",PHP_OS)){
阅读全文…
PHP中date转成时间戳,使用time()获取的是秒数
[ 2010-12-02 11:04:54 | 作者: admin ]
P.S. time()获取的是秒数
date("Y-m-d H:i:s"); //如果存成datetime型在MYSQL中 必须用这种格式
实现功能:获取某个日期的时间戳,或获取某个时间的时间戳。
strtotime 将任何英文文本的日期时间描述解析为Unix时间戳[将系统时间转化成unix时间戳]
一,获取指定日期的unix时间戳 strtotime("2009-1-22") 示例如下:
echo strtotime("2009-1-22") 结果:1232553600
说明:返回2009年1月22日0点0分0秒时间戳
二,获取英文文本日期时间 示例如下:
便于比较,使用date将当时间戳与指定时间戳转换成系统时间
(1)打印明天此时的时间戳strtotime("+1 day")
当前时间:echo date("Y-m-d H:i:s",time()) 结果:2009-01-22 09:40:25
...
阅读全文…
date("Y-m-d H:i:s"); //如果存成datetime型在MYSQL中 必须用这种格式
实现功能:获取某个日期的时间戳,或获取某个时间的时间戳。
strtotime 将任何英文文本的日期时间描述解析为Unix时间戳[将系统时间转化成unix时间戳]
一,获取指定日期的unix时间戳 strtotime("2009-1-22") 示例如下:
echo strtotime("2009-1-22") 结果:1232553600
说明:返回2009年1月22日0点0分0秒时间戳
二,获取英文文本日期时间 示例如下:
便于比较,使用date将当时间戳与指定时间戳转换成系统时间
(1)打印明天此时的时间戳strtotime("+1 day")
当前时间:echo date("Y-m-d H:i:s",time()) 结果:2009-01-22 09:40:25
...
阅读全文…
1