php 948

#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
php实现发送微信模板消息的方法

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

2015-12-17 774

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

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

2015-12-17 545

#PHP
PHP读取网卡MAC地址

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

2015-12-17 935

#PHP
万能的分页类

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

2015-12-17 787

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

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

2015-12-17 317

#PHP
ShopNC QQ 互联修正,100010 错误处理

<?php /** * 入口文件 * * 统一入口,进行初始化信息 * * * @copyright Copyright (c) 2007-2013 ShopNC Inc. …

2015-12-17 513

#PHP
通过身份证号获取属相、星座、性别

// 根据身份证号,自动返回对应的星座 function get_xingzuo($cid) { $cid = getIDCard($cid); if (!isIdCard($ci…

2015-12-17 695

#PHP
wordpress 3.6 才引入的处理输入转义字符的

/** * Add slashes to a string or array of strings. * * This should be used when preparing …

2015-12-17 672

#PHP
判断是否是身份证号

function isIdCard($number) { // 检查是否是身份证号 $number = getIDCard($number); // 转化为大写,如出现x $num…

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