-
-
/** - * シリアル番号ジェネレーター
- func: snMaker
- param: $pre = ''
- */
- function snMaker($pre = '') {
- $date = date('Ymd');
- $ランド = ランド(1000000,9999999);
- $time = mb_substr(time(), 5, 5, 'utf-8');
- $serialNumber = $pre.$date.$time.$rand;
- // echo strlen($serialNumber).'
';
- $serialNumber を返します;
- }
- echo snMaker();
/**
- * 文字列の一部を特定の文字に置換します
- * @param str or int $str 処理する文字列
- * @param str or int $to どの文字列を置換しますか?
- * @param int $start 最初の文字列を保持します数文字
- * @param int $end 最後の数文字を残します
- * URL: http://bbs.it-home.org
- * 日付: 2013/2/17
- */
- function HideString($str = 'hello', $to = '*', $start = 1, $ end = 0) {
- $lenth = strlen($str) - $start - $end;
- $lenth = ($lenth $to = str_repeat($to, $lenth);
- $str = substr_replace($str, $to, $start, $lenth);
- $str; を返します。
- }
- echo hideString();
- ?>
-
复制代
|