PHP の 2 つの機能: シリアル番号の生成と文字列の置換
リリース: 2016-07-25 09:05:55
-
-
/** - * シリアル番号ジェネレーター
- 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();
- ?>
-
复制代
|
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31