php 948

#PHP
ShopNC 产品分类搜索功能

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

2015-12-17 815

#PHP
循环创建目录

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

2015-12-17 609

#PHP
磁力链接打包下载

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

2015-12-17 188

#PHP
ShopNC 文章链接限制修改

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

2015-12-17 640

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

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

2015-12-17 316

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

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

2015-12-17 568

#PHP
php实现发送微信模板消息的方法

<?php namespace Org\Weixin; class OrderPush { protected $appid; protected $secrect; pro…

2015-12-17 754

#PHP
ShopNC 后台品牌默认排序优化

#file: /admin/control/brand.php #line: 60 $brand_list = $model_brand->table('brand')-&g…

2015-12-17 526

#PHP
PHP读取网卡MAC地址

class GetMacAddr{ var $return_array = array(); // 返回带有MAC地址的字串数组 var $mac_addr; function G…

2015-12-17 916

#PHP
万能的分页类

<?php /* * To change this template, choose Tools | Templates * and open the template in…

2015-12-17 772

#PHP
自定义对称 加密和解密

function selfEncode($str, $k) { $encoded = ''; $len = strlen($str); $lk = strlen($k); for(…

2015-12-17 302
1 10 11 12 13 14 79