常用函数-username_exists()

常用函数-username_exists() 说明 存在该用户时返回用户编号,不存在时返回null。 用法 &…

常用函数-username_exists()

说明

存在该用户时返回用户编号,不存在时返回null。

用法

<?php
require ( ABSPATH . WPINC . ‘/registration.php’ );
if (username_exists($username)){  } 
?> 

示例

在脚本中使用username_exists()判断所给用户名是否存在。

<?php          
      $username = $_POST['username'];         
      if (username_exists($username))             
          echo "Username In Use!";         
      else             
          echo "Username Not In Use!";  
?>  

参数

$username —— 表示用户名的字符串,用户名将被检查是否存在。

返回的值

存在该用户时函数返回用户编号,不存在时返回null。

延伸阅读

在 category Functions (类别函数)中可查看详细函数列表。

分类:中文手册

类别:WordPress教程

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册