常用函数-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 (类别函数)中可查看详细函数列表。
分类:中文手册