gpt4 book ai didi

php - 在 PHP 中引用容器对象的方法?

转载 作者:可可西里 更新时间:2023-11-01 12:34:43 26 4
gpt4 key购买 nike

在 PHP 中给出以下内容:

<?php
class foo {
public $bar;
function __construct() {
"Foo Exists!";
}

function magic_bullet($id) {
switch($id) {
case 1:
echo "There is no spoon! ";
case 2:
echo "Or is there... ";
break;
}
}
}

class bar {
function __construct() {
echo "Bar exists";
}
function target($id) {
echo "I want a magic bullet for this ID!";
}
}

$test = new foo();
$test->bar = new bar();
$test->bar->target(42);

我想知道“bar”类是否可以调用“foo”类的“magic bullet”方法。 “bar”实例包含在“foo”实例中,但与它不存在父/子关系。实际上,我在一个数组中有许多不同的“foo”类,每个类在将它传递给“magic_bullet”函数以获得最终结果之前都做了一些与 $id 不同的事情,所以禁止结构类关系的变化,是否可以访问“容器”实例的方法?

最佳答案

您必须修改代码以提供关系。在 OOP 中,我们称之为 aggregation .

假设 PHP 4,以及“条形数组”的想法

<?php

class foo {
var $bars = array();
function __construct() {
"Foo Exists!";
}

function magic_bullet($id) {
switch($id) {
case 1:
echo "There is no spoon! ";
case 2:
echo "Or is there... ";
break;
}
}

function addBar( &$bar )
{
$bar->setFoo( $this );
$this->bars[] = &$bar;
}
}

class bar {
var $foo;
function __construct() {
echo "Bar exists";
}

function target($id){
if ( isset( $this->foo ) )
{
echo $this->foo->magic_bullet( $id );
} else {
trigger_error( 'There is no foo!', E_USER_ERROR );
}
}
function setFoo( &$foo )
{
$this->foo = &$foo;
}
}

$test = new foo();
$bar1 = new bar();
$bar2 = new bar();

$test->addBar( $bar1 );
$test->addBar( $bar2 );

$bar1->target( 1 );
$bar1->target( 2 );

关于php - 在 PHP 中引用容器对象的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1240322/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com