WordPress:Function Reference/username exists

来自站长百科
跳转至: 导航、​ 搜索

描述[ ]

如果用户存在,返回用户ID,如果用户不存在,返回

用法[ ]

%%% <?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 —一个字符串代表用户名,检查是否存在。

返回[ ]

如果用户存在,这个函数返回用户ID,如果用户不存在,返回

类别:函数 类别:创建的新网页

深入阅读[ ]

关于全部的函数的列表,请看看[1]

也看看Function_Reference