class GetMacAddr{ var $return_array = array(); // 返回带有MAC地址的字串数组 var $mac_addr; function G…
<?php /* * To change this template, choose Tools | Templates * and open the template in…
function selfEncode($str, $k) { $encoded = ''; $len = strlen($str); $lk = strlen($k); for(…
<?php /** * 入口文件 * * 统一入口,进行初始化信息 * * * @copyright Copyright (c) 2007-2013 ShopNC Inc. …
// 根据身份证号,自动返回对应的星座 function get_xingzuo($cid) { $cid = getIDCard($cid); if (!isIdCard($ci…
/** * Add slashes to a string or array of strings. * * This should be used when preparing …
function isIdCard($number) { // 检查是否是身份证号 $number = getIDCard($number); // 转化为大写,如出现x $num…
function zhuanhuan($url){ if(empty($url)) return $result; $urlodd=explode('//',$url,2); $h…
<?php header('Content-type:text/html;charset=utf-8'); //读取图片文件,转换成base64编码格式 $image_fil…
error_reporting(E_ALL); function cache_shutdown_error() { $_error = error_get_last(); if (…
$msg = array(); $postStr = file_get_contents('php://input'); $msg = (array)simplexml_load_…
function DateRange ($begin,$end,$interval='M'){ $begin = new DateTime($begin); $end = new …
PHP 将视频转成 MP4 并获取视频预览图(用到ffmpeg)