UCenterでユーザーをバッチ追加するphp
リリース: 2016-07-25 09:06:35
php を UCenter ディレクトリに配置して実行するだけです。 ソース:
http://www.tongqiong.com/read.php?tid-27-ds-1.html
- //著者: www.tongqiong.com
- //header("content-type:text/html; charset=utf-8");
- //include_once("include/config.php ");
- //include_once("include/db_mysql.inc.php");
- ////include_once("include/n_public_function.php");
- //$db = new DB_MYSQL("localhost","dbh218710 ","root","123");
- include_once('./common.php');
- include_once(S_ROOT.'./data/data_magic.php');
- ?>
-
-
-
- global $_SGLOBAL;//グローバル変数を定義します
- //登録ユーザー名
- $rando_first_name = array(
- '買い物できる場所',
- 'Tongqiong Forum',
- '台州ママ',
- '7788 ハッカー '
-
- );
-
-
- //登録パスワード
- $rando_first_password = array(
- '15032x',
- '103716',
- '114517',
- '1ggg17'
- );
-
-
-
- /*ユーザー名を確認するためパスワードは出力単語の最後の数字と配列の長さと比較できます
- echo count($rando_first_name);
- echo "______";
- echo count($rando_first_password);
- exit;
-
- */
-
-
- for ($ i=0;$i $username = $rando_first_name[$i];
- $pwd1 = $rando_first_password[$i];
-
- $salt = substr(uniqid( rand( )), -6);
- $pwd = md5(md5($pwd1).$salt);
-
-
-
- //このユーザー名が既に存在するかどうかをクエリします
- $sql_username = "select username from uc_members where username=' " .$username."'";
- $s_name = $_SGLOBAL['db']->fetch_array($_SGLOBAL['db']->query($sql_username));
-
- //がない場合重複した名前のユーザー
- if($username != $s_name['username']){// 存在しない場合
-
- $_SGLOBAL['db']->query("INSERT INTO uc_members (ユーザー名, パスワード,regdate) ,salt)
- VALUES ('$username', '$pwd','".mktime()."','$salt')");
-
- $sql = "username=' の uc_members から uid を選択します。" $username. "'";
- $_SGLOBAL['db']->クエリ($sql);
-
- $uuu = $_SGLOBAL['db']->fetch_array($_SGLOBAL['db']-> ;query( $sql));
- echo $uuu['uid'];
-
- $_SGLOBAL['db']->query("uc_memberfields (uid) に挿入します
- VALUES ('".$uuu['uid ']. "')");
- echo $username."success
";
- }else{
- echo "追加したいユーザーが追加されました。 ";
- }
- }
-
- //著者: www.tongqiong.com
- ?>
-
-
コードをコピー
|
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、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