当前位置: 首页>>代码示例>>PHP>>正文


PHP ctrl_users::display_outer方法代码示例

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


在下文中一共展示了ctrl_users::display_outer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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);
    }
开发者ID:robehickman,项目名称:decentralised_microblogging_system,代码行数:25,代码来源:ctrlUsersTest.php

示例2: array

    function test_following_invalid_user()
    {
        $rel = new ctrl_relations();
        $rel->params = array('relations', 'followers', 'unknows++');

        $rmt_mck = new mck_mdl_remotes('sue', 'Big fat human');

        try
        {
            $rel->following($rmt_mck);
            $this->fail();
        }
        catch(exception $e)
        {
            $this->assertEquals(preg_match("/users/", $e->getMessage()), 1);
        }

    // After redirect, should display error
        $usr = new ctrl_users();
        $usr->index();
        $result = $usr->display_outer(true);
        $this->assertEquals(preg_match("/The specified user does not exist/", $result), 1);
    }
开发者ID:robehickman,项目名称:decentralised_microblogging_system,代码行数:23,代码来源:ctrlRelationsTest.php


注:本文中的ctrl_users::display_outer方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。