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


PHP Y::bar方法代码示例

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


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

示例1: test

function test()
{
    $a = X::foo();
    $a();
    $a = Y::foo();
    $a();
    $a = X::bar();
    $a();
    $a = Y::bar();
    $a();
    $x = new X();
    $a = $x->bar();
    $a();
    $x = new Y();
    $a = $x->bar();
    $a();
    $a = X::bar_nonstatic();
    $a();
    $a = Y::bar_nonstatic();
    $a();
    $x = new X();
    $a = $x->bar_nonstatic();
    $a();
    $x = new Y();
    $a = $x->bar_nonstatic();
    $a();
}
开发者ID:badlamer,项目名称:hhvm,代码行数:27,代码来源:late_bound_class.php

示例2: test

function test($str)
{
    X::bar($str);
    (new X())->bar($str);
    Y::bar($str);
    (new Y())->bar($str);
}
开发者ID:ezoic,项目名称:hhvm,代码行数:7,代码来源:strings_with_colons.php

示例3: zoo2

}
class Z extends Y
{
    public function zoo2()
    {
        return "zoo2/" . $this->nonexistingzoo(8, 8, 8);
    }
    public function zoo()
    {
        return $this->bar() . $this->zoo2() . X::nonexisting1(3);
    }
}
// calling static methods resolved in compile time
echo X::nonexistingfoo(1, 2, 3);
echo call_user_func_array(array("X", "nonexisting2"), array(10, 20, 30));
echo Y::nonexistingfoo(1, 2, 3);
echo Y::nonexistingfoo2(4);
echo call_user_func_array(array("Y", "nonexisting3"), array("a", 'b', 'c'));
echo Z::nonexistingstatic();
// calling instance methods
$x = new X();
echo $x->bar();
echo $x->non_existing_func(1, 2, 3);
echo call_user_func(array($x, "foo"), 5, 6, 7);
$y = new Y();
echo $y->bar();
echo $y->nonexisting4(9, 8, 7);
echo call_user_func(array($y, "bar"), 4, 5, 6);
echo call_user_func(array($y, "nonexisting5"), 333, 666, 999);
$z = new Z();
echo $z->zoo();
开发者ID:dw4dev,项目名称:Phalanger,代码行数:31,代码来源:__call.php

示例4: ref

<?php

class X
{
    function ref(&$ref)
    {
        $ref = 1;
    }
    function bar()
    {
        $this->ref($this->priv);
    }
}
class Y extends X
{
    private $priv;
}
class Z extends Y
{
}
$z = new Z();
$z->bar();
var_dump($z);
$y = new Y();
$y->bar();
var_dump($y);
开发者ID:badlamer,项目名称:hhvm,代码行数:26,代码来源:801.php


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