php 948

#PHP
jQuery 正则常见匹配

var reg = /^[1-9]\d*$/; //校验数量为正整数 var nameRule = /^[\u4e00-\u9fa5]{2,20}$/; //姓名正则匹配 var …

2015-12-17 735

#PHP
ShopNC 产品分类搜索功能

# file: \shop\control\search.php if ($_GET['keyword'] != '') { // 品牌搜索 $model_brand = Mode…

2015-12-17 832

#PHP
循环创建目录

function createDir($path){ if (!file_exists($path)){ createDir(dirname($path)); mkdir($pat…

2015-12-17 630

#PHP
磁力链接打包下载

<?php /** * 磁力链接下载,根据 关键词 文件大小 保存到指定文件中 */ class Magnet{ public $host='https://btdigg.o…

2015-12-17 206

#PHP
ShopNC 文章链接限制修改

#file: /admin/templates/default/article.add.php #file: /admin/templates/default/article.ed…

2015-12-17 662

#PHP
mysql数据导出Excel文件格式

<?php /** * author:郭椿安 * create at:2015-11-13 * last mod: 2015-12-12 14:23:52 */ header…

2015-12-17 332

#PHP
ShopNC 隐藏未设置的商品详情属性(默认为不限)

#file: /shop/templates/simplenc/seller/store_goods_add.step2.php #line: 202 # 添加一个 “请选择” 的…

2015-12-17 583

#PHP
防止sql注入

function inject_check($sql_str) { return eregi('select|insert|and|or|update|delete|\'|\/\*…

2015-12-15 198

#PHP
apc缓存

Functions to update arrays and get the values from an unique key. <?php function apc_ar…

2015-12-15 380

#PHP
封装 Twitter 访问的 PHP 类

<?php class Twitter { /** * Method to make twitter api call for the users timeline in X…

2015-12-15 1,005

#PHP
AES CBC

class AES_CBC_NoPadding { private $iv; private $key; private $blocksize; public function _…

2015-12-15 433
1 11 12 13 14 15 79