如此经年,望尽千帆。
发布时间:2014-04-02 06:39:46
php验证是否是md5编码的例子。代码很简单,使用了正则表达式。function is_md5($password) { return preg_match("/^[a-z0-9]{32}$/", $password);}......【阅读全文】
发布时间:2014-03-30 07:06:36
js格式化时间日期的函数代码。Date.prototype.format = function(format){ var o = { "M+" : this.getMonth()+1, //month "d+" : this.getDate(), //day "h+" : this.getHours(), //hour "m+" : this.getMinutes(), //minute "s+" : this.getSeco.........【阅读全文】
发布时间:2014-03-29 21:26:37
JS格式化数字金额只留两位小数。写了个格式化函数。可以控制小数位数,自动四舍五入。js格式化金额的实例详解。例如: 12345格式化为12,345.00 12345.6格式化为12,345.60 12345.67格式化为 12,345.67 只留两位小数。 回来后写了个格式化函数。可以控制小数位数,自动四舍五入。 .........【阅读全文】
发布时间:2014-03-29 21:19:34
分享一例格式化金额的js代码,将数字格式化成金额的表示形式,很多时候会使用得上,在此记录下。代码:/** * 将数值四舍五入(保留2位小数)后格式化成金额形式 * * @param num 数值(Number或者String) * @return 金额格式的字符串,如'1,234,567.4.........【阅读全文】
发布时间:2014-03-23 22:29:13
php实现的aes加密类,代码中有使用方法。<?php//php aes加密类 class AESMcrypt { public $iv = null; public $key = null; public $bit = 128; private $cipher; public function __construct($bit, $key, $iv, $mode) { if(empty($bit) || empty($key) || empty($iv) || empty($mode)) ret.........【阅读全文】