4

请参阅 Web 上有关 PHP 工厂模式的示例。

在线路$kind =& Vehicle::category($wheel);中,我为什么要使用&

编码:

<?php
    class Vehicle {

        function category($wheel = 0) {
            if ($wheel == 2) {
                return "Motor";
            } elseif($wheel == 4) {
                return "Car";
            }
        }
    }

    class Spec {

        var $wheel = '';

        function Spec($wheel) {
            $this->wheel = $wheel;
        }

        function name() {
            $wheel = $this->wheel;
                return Vehicle::category($wheel);
        }

        function brand() {
            $wheel = $this->wheel;
                $kind =& Vehicle::category($wheel);
            if ($kind == "Motor") {
                return array('Harley','Honda');
            } elseif($kind = "Car") {
                return array('Nisan','Opel');
            }
        }
    }

    $kind = new Spec(2);
    echo "Kind: ".$kind->name();
    echo "<br>";
    echo "Brand: " . implode(",", $kind->brand());
?>
4

2 回答 2

5

来自 Stack Overflow 问题参考 - 这个符号在 PHP 中是什么意思?

=&参考

正如(已删除)评论所说,最后一个链接应该适用于您的具体案例。

于 2012-05-13T07:26:10.770 回答
4

它在这里没有用,因为该示例正在获取对常量的引用,但是当您想“监视”可能更改的值并且希望变量随之更改时,引用确实有其用途。

于 2012-05-13T07:23:10.463 回答