本文整理汇总了PHP中ctrl_users::profile方法的典型用法代码示例。如果您正苦于以下问题:PHP ctrl_users::profile方法的具体用法?PHP ctrl_users::profile怎么用?PHP ctrl_users::profile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ctrl_users
的用法示例。
在下文中一共展示了ctrl_users::profile方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
function test_profile_invalid_user()
{
$params = array(
'users',
'profile',
'no_such_user++');
$usr = new ctrl_users();
$usr->params = $params;
try
{
$usr->profile();
$this->fail();
}
catch(exception $e)
{
$this->assertEquals(preg_match("/users/", $e->getMessage()), 1);
}
// After redirect, should display error
$usr->index();
$result = $usr->display_outer(true);
$this->assertEquals(preg_match("/The specified user does not exist/", $result), 1);
}