PHP UserIdentity::verifyEmail方法代码示例

本文整理汇总了PHP中UserIdentity::verifyEmail方法的典型用法代码示例。如果您正苦于以下问题:PHP UserIdentity::verifyEmail方法的具体用法?PHP UserIdentity::verifyEmail怎么用?PHP UserIdentity::verifyEmail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UserIdentity的用法示例。


PHP UserIdentity::verifyEmail方法代码示例

在下文中一共展示了UserIdentity::verifyEmail方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: testVerifyEmail

 public function testVerifyEmail()
 {
     $fakeIdentity = new UserIdentity(null, null);
     $this->assertFalse($fakeIdentity->verifyEmail());
     $fakeIdentity->setId(999);
     $this->assertFalse($fakeIdentity->verifyEmail());
     $identity = UserIdentity::find(array('username' => 'neo'));
     $this->assertTrue($identity->verifyEmail());
 }
开发者ID:netis-pl,项目名称:yii-usr,代码行数:9,代码来源:UserIdentityTest.php

本文标签属性:

示例:示例英语

代码:代码是什么

PHP:php语言

UserIdentity:UserIdentity

verifyEmail:verifyEmail

上一篇:C# HtmlTable.RenderControl方法代码示例
下一篇:大到暴雨是什么意思 大到暴雨的含义(重庆暴雨淹了哪些地方)

为您推荐