0

即使我将返回更改为回显,这个类也会给我一个空白输出,我不确定问题是什么,但我显然不精通处理类和对象。

我确定我只是错误地处理了变量/数组,但是我看不到在哪里,也许不应该在下面声明变量,Class因为只有在创建人时才应该返回它们?我应该在函数中声明变量,还是根本不声明它们,因为它们应该由 处理$args

更新的问题:如何让它返回每个参数而不仅仅是 FIRSTNAME?

PHP:

class people_handler
{
    public $firstname;
    public $middlename;
    public $lastname;
    public $city;
    public $province_state;
    /* zip+4 is default for postcode (postal code) */
    public $postcode;
    public $country;

    function create_people($args)
    {
        $fullname=array($this->firstname,$this->middlename,$this->lastname);
        $normname=array($this->firstname,$this->lastname);
        $fulladdress=array($this->city,$this->province_state,$this->postcode,$this->country);
        if(!$args->middlename&&$args->firstname && $args->lastname && $args->city && $args->province_state && $args->postcode && $args->country)
        {
            $temp_arr=array($normname,$fulladdress);
            foreach($temp_arr as $value)
            {
                foreach($value as $values)
                {
                    return $values;
                }
            }
        }
        else if($args->firstname && $args->middlename && $args->lastname && $args->city && $args->province_state && $args->postcode && $args->country)
        {
            $temp_arr=array($fullname,$fulladdress);
            foreach($temp_arr as $value)
            {
                foreach($value as $values)
                {
                    return $values;
                }
            }
        }
        else
        {
            die ("Must enter all values excluding middlename.");
        }
    }
}

$p1=new people_handler;
$p1->firstname="John";
$p1->middlename="Jonah";
$p1->lastname="Jameson";
$p1->city="Lansing";
$p1->province_state="Michigan";
$p1->postcode="48876-4444";
$p1->country="USA";


echo $p1->create_people($p1);

回报:

John
4

3 回答 3

3

您缺少对象自引用:$this到处都是。

每当您从类中引用方法或属性时,您需要将 $this 引用为正在执行该过程的 Object 的当前实例化。那么,例如...

$fullname=array($firstname,$middlename,$lastname);  

变成

 $fullname=array($this->firstname,$this->middlename,$this->lastname);  

哪个应该起作用,因为您已经为这些属性分配了值。

编辑:进一步查看代码,通过循环不断返回值不会管理对浏览器的回显。您可以echo $value不返回它,也可以从值构建一个数组并将其返回并让脚本处理该数组以回显到浏览器。

编辑第二个:要获取所有值,您需要在构建它们时收集它们。另一种选择是将它们作为方法的一部分简单地输出到浏览器。这两个选项都有效,但是将它们收集到一个数组中使其更便携,但也需要维护更多的代码。同样,您不需要将对象传递给自身以使方法工作。

echo $p1->create_people($p1);

应该...

$p1->create_people();

create_people你会有...

function create_people()
{
    $fullname=array($this->firstname,$this->middlename,$this->lastname);
    $normname=array($this->firstname,$this->lastname);
    $fulladdress=array($this->city, $this->province_state, $this->postcode, $this->country);
    if($args->firstname && $args->lastname && $args->city && $args->province_state && $args->postcode && $args->country)
    { //Don't bother including middlename if it doesn't matter if it is filled or not...
        $temp_arr = array($normname, $fulladdress);
        foreach($temp_arr as $value)
        {
            foreach($value as $values)
            {
                echo $values;
            }
        }
    } else {
        die ("Must enter all values excluding middlename.");
    }
}

那应该行得通。

于 2012-04-26T17:26:31.780 回答
2

除了自引用问题(顺便说一句,$args也不需要,因为这应该是自引用),你的循环结构是错误的。

$temp_arr=array($normname,$fulladdress);
foreach($temp_arr as $value)
{
   foreach($value as $values)
   {
       return $values;
   }
}

这会:

  1. 遍历 temp_arr,找到 $normname 作为第一个值
  2. 将 $normname 视为一个数组并循环遍历它
  3. 返回它在 $normname 中找到的第一个值
  4. 函数到此结束,其他所有内容均未执行。

一个函数只能有一个返回值。如果您需要返回不止一件事物的信息,则需要将其作为数组或对象返回,以便将其全部包含在一个元素中。

目前我不太确定你想在课堂上完成什么,所以很遗憾我无法帮助你完成你需要做的事情。

编辑:在这种情况下,您不需要返回任何东西。您的类已经使类中的所有函数都可以访问这些变量。使用“new”创建对象的一个​​实例,即创建“a people_handler”。这个 people_handler 有关于它的属性,您将其公开,因此可以从类外部设置它们(这在更大的项目中可能不是一个好主意,但似乎很好)。作为类的一部分(即在其中)的所有函数,都可以通过使用自引用来访问这些属性当前对特定 people_handler 具有的值$this

class TestClass {
    public fullname; //a random "property"
    function echoFullname() {
        echo $this->fullname; //whatever fullname is at the moment for the TestClass object we are using
    }
}

$a = new TestClass(); //Create a TestClass object
$a->fullname = "Alex"; //make its name "Alex"

$b = new TestClass(); //Create another TestClass object
$b->fullname = "Carl"; //but let's name him Carl

$a->echoFullname(); //And now output the names
$b->echoFullname();

显然这没有实际用途,但希望能说明它是如何工作的。如您所见,变量传递根本没有必要。

于 2012-04-26T17:31:42.890 回答
1

在第 14 行:

    $fullname=array($firstname,$middlename,$lastname);

大概应该是:

    $fullname=array($this->firstname,$this->middlename,$this->lastname);

相同的第 16 行:

    $fulladdress=array($city,$province_state,$postcode,$country);
于 2012-04-26T17:27:40.473 回答