ホームページ > バックエンド開発 > PHPチュートリアル > 登録時のエラーメッセージ

登録時のエラーメッセージ

WBOY
リリース: 2016-06-23 14:28:22
オリジナル
1020 人が閲覧しました

if($ucresult > 0)            {                echo "<font color='#4E7504'><b>√用户名可用</b></font>";            }            elseif($ucresult == -1)            {                echo "<font color='red'><b>&times;用户名不合法</b></font>";            }            elseif($ucresult == -2)            {                echo "<font color='red'><b>&times;包含要允许注册的词语</b></font>";            }            elseif($ucresult == -3)            {                echo "<font color='red'><b>&times;用户名已经存在</b></font>";            }            exit();
ログイン後にコピー
ログイン後にコピー

像这种 -1 -2 -3 他是怎么来的?


回复讨论(解决方案)

if($ucresult > 0)            {                echo "<font color='#4E7504'><b>√用户名可用</b></font>";            }            elseif($ucresult == -1)            {                echo "<font color='red'><b>&times;用户名不合法</b></font>";            }            elseif($ucresult == -2)            {                echo "<font color='red'><b>&times;包含要允许注册的词语</b></font>";            }            elseif($ucresult == -3)            {                echo "<font color='red'><b>&times;用户名已经存在</b></font>";            }            exit();
ログイン後にコピー
ログイン後にコピー

像这种 -1 -2 -3 他是怎么来的?
下面是html代码
  <tr>    <td class="textR"><span class="f14">手机号码</span>:</td>    <td><input type="text"  name="mobile" class="txtInput" id="mobile"></td>    <td class="color999"><span class="red">*</span><span id="_mobile"></span></td>  </tr>
ログイン後にコピー

这段代码不完整,前面应该还有获取和转换的代码

如果用的是ajax,那就是请求界面的返回值

这可能是程序规范的返回值 约定俗成 所以要往上看这个$ucresult 是如何赋值的

这可能是程序规范的返回值 约定俗成 所以要往上看这个$ucresult 是如何赋值的

function uc_user_checkemail($email) {	return call_user_func(UC_API_FUNC, 'user', 'check_email', array('email'=>$email));}
ログイン後にコピー
ログイン後にコピー

define('UC_API_FUNC', UC_CONNECT == 'mysql' ? 'uc_api_mysql' : 'uc_api_post');
ログイン後にコピー
ログイン後にコピー

function uc_api_mysql($model, $action, $args=array()) {	global $uc_controls;	if(empty($uc_controls[$model])) {		include_once UC_ROOT.'./lib/db.class.php';		include_once UC_ROOT.'./model/base.php';		include_once UC_ROOT."./control/$model.php";		eval("\$uc_controls['$model'] = new {$model}control();");	}	if($action{0} != '_') {		$args = uc_addslashes($args, 1, TRUE);		$action = 'on'.$action;		$uc_controls[$model]->input = $args;		return $uc_controls[$model]->$action($args);	} else {		return '';	}}
ログイン後にコピー
ログイン後にコピー


这可能是程序规范的返回值 约定俗成 所以要往上看这个$ucresult 是如何赋值的

function uc_user_checkemail($email) {	return call_user_func(UC_API_FUNC, 'user', 'check_email', array('email'=>$email));}
ログイン後にコピー
ログイン後にコピー

define('UC_API_FUNC', UC_CONNECT == 'mysql' ? 'uc_api_mysql' : 'uc_api_post');
ログイン後にコピー
ログイン後にコピー

function uc_api_mysql($model, $action, $args=array()) {	global $uc_controls;	if(empty($uc_controls[$model])) {		include_once UC_ROOT.'./lib/db.class.php';		include_once UC_ROOT.'./model/base.php';		include_once UC_ROOT."./control/$model.php";		eval("\$uc_controls['$model'] = new {$model}control();");	}	if($action{0} != '_') {		$args = uc_addslashes($args, 1, TRUE);		$action = 'on'.$action;		$uc_controls[$model]->input = $args;		return $uc_controls[$model]->$action($args);	} else {		return '';	}}
ログイン後にコピー
ログイン後にコピー
 $ucresult = uc_user_checkemail($email);
ログイン後にコピー

这可能是程序规范的返回值 约定俗成 所以要往上看这个$ucresult 是如何赋值的 妞妞  你说我不懂这些类什么的东东。是不是说我是个水货程序员?懂是懂点,但是就是不会写

约定俗成的数值啦
你得看看常量UC_API_FUNC的值的同名函数
把'user', 'check_email', array('email'=>$email) 三个传进去会有什么结果
可能还要向上追溯

uc 的api 和函数 查他们的手册吧 应该有提到的

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート