PHP属性_exists()有问题

PHP属性_exists()有问题,php,class,properties,exists,Php,Class,Properties,Exists,嘿,大家。。。当我运行下面的代码时,ifproperty_existsget_class$puzzcharacters_encrypted,$solutionCharacter不断计算为false,但是前面的echo语句显示了正确的信息,因此属性肯定存在。我可能遗漏了什么?PHP版本5.2.11 $puzzle_solution = $currentPuzzleData->getVal("text"); $puzzle_encryption = ""; for ($i = 0; $i &l

嘿,大家。。。当我运行下面的代码时,ifproperty_existsget_class$puzzcharacters_encrypted,$solutionCharacter不断计算为false,但是前面的echo语句显示了正确的信息,因此属性肯定存在。我可能遗漏了什么?PHP版本5.2.11

$puzzle_solution = $currentPuzzleData->getVal("text");
$puzzle_encryption = "";
for ($i = 0; $i < strlen($puzzle_solution); $i++)
{
    $solutionCharacter = substr($puzzle_solution, $i, 1);
    echo ("\$solutionCharacter = " . $solutionCharacter . "<br />\n");
    echo ("\$puzzleCharacters_encrypted->getVal(" . $solutionCharacter . ") = " . $puzzleCharacters_encrypted->getVal($solutionCharacter) . "<br />\n");
    if (property_exists(get_class($puzzleCharacters_encrypted), $solutionCharacter))
    {
        $encryptionCharacter = $puzzleCharacters_encrypted->getVal($solutionCharacter);
        $puzzle_encryption .= $encryptionCharacter;
    }
    else
    {
        $puzzle_encryption .= $solutionCharacter;
    }
}
echo ("<br />\n" . $puzzle_solution);
echo ("<br />\n" . $puzzle_encryption);
谢谢

第二条echo语句实际上不是查询对象,而是输出一个字符串,其中放入$solutionCharacter。没有证据表明该财产确实存在

然后,查询$puzzcharacters\u encrypted类中的属性。很可能属性不是在类中定义的,而是在对象中定义的

如果你尝试,会发生什么

if (property_exists($puzzleCharacters_encrypted, $solutionCharacter))

由于代码原因,将此作为答案发布

class puzzleCharacters
{
    public $char_a;
    public $char_b;
    public $char_c;
    public $char_d;
    public $char_e;
    public $char_f;
    public $char_g;
    public $char_h;
    public $char_i;
    public $char_j;
    public $char_k;
    public $char_l;
    public $char_m;
    public $char_n;
    public $char_o;
    public $char_p;
    public $char_q;
    public $char_r;
    public $char_s;
    public $char_t;
    public $char_u;
    public $char_v;
    public $char_w;
    public $char_x;
    public $char_y;
    public $char_z;
    public $char_A;
    public $char_B;
    public $char_C;
    public $char_D;
    public $char_E;
    public $char_F;
    public $char_G;
    public $char_H;
    public $char_I;
    public $char_J;
    public $char_K;
    public $char_L;
    public $char_M;
    public $char_N;
    public $char_O;
    public $char_P;
    public $char_Q;
    public $char_R;
    public $char_S;
    public $char_T;
    public $char_U;
    public $char_V;
    public $char_W;
    public $char_X;
    public $char_Y;
    public $char_Z;
    public $char_0;
    public $char_1;
    public $char_2;
    public $char_3;
    public $char_4;
    public $char_5;
    public $char_6;
    public $char_7;
    public $char_8;
    public $char_9;

    public function setVal($prop, $val)
    {
        $this->{"char_" . $prop} = $val;
        //echo ("setting \$this->\$char_" . $prop . " as " . $val . "<br />\n");
    }

    public function getVal($prop)
    {
        //echo ("getting \$" . $prop . " as " . $this->{"char_" . $prop} . "<br />\n");
        return ($this->{"char_" . $prop});
    }
}

也许我在这里遗漏了一些东西,但是属性_存在…,$solutionCharacter和$obj->getVal$solutionCharacter之间的关系是什么?我得到了相同的结果$puzzle_solution和$puzzle_encryption打印出相同的值。此外,我还了解到在PHP<5.3中不会看到私有属性,因此,我将所有属性从private更改为public。我还尝试了以下类参数:$puzzcharacters原始类-抛出错误puzzcharacters-对于$puzzle\u解决方案和$puzzle\u加密puzzcharacters\u加密-$puzzle\u解决方案和$puzzle,结果相同_encryption@Eric盖特瓦尔是干什么的?您能否显示属性的实际定义位置?$solutionCharacter实际上包含什么?你能将打印结果\u r$puzzleCharacters\u加密后发布吗?这里提到了属性吗?@Eric那么很明显为什么propertyExists必须失败,因为您在代码中使用char_xyz,但只检查xyz。顺便说一句,将所有这些字符存储在一个数组$chars[A]$chars[B]中会更容易。。。。哦,老兄,我错过了那件事,感觉像个大傻瓜。谢谢我将$solutionCharacter更改为char$solutionCharacter,它按我的要求弹出。在这个脚本中,我选择类有两个原因:当使用数组进行字符交换时,我最终使用了六个数组,而使用一个类对象将其切成两半。另一个原因,正如你可能已经猜到的,是因为我刚刚开始在PHP5课程。我上一次做这些是在PHP3,所以我有点生疏了!
.puzzleCharacters Object ( [char_a] => x [char_b] => i [char_c] => y [char_d] => j [char_e] => o [char_f] => m [char_g] => p [char_h] => n [char_i] => v [char_j] => l [char_k] => w [char_l] => s [char_m] => u [char_n] => e [char_o] => f [char_p] => h [char_q] => q [char_r] => b [char_s] => k [char_t] => z [char_u] => a [char_v] => r [char_w] => t [char_x] => c [char_y] => d [char_z] => g [char_A] => X [char_B] => I [char_C] => Y [char_D] => J [char_E] => O [char_F] => M [char_G] => P [char_H] => N [char_I] => V [char_J] => L [char_K] => W [char_L] => S [char_M] => U [char_N] => E [char_O] => F [char_P] => H [char_Q] => Q [char_R] => B [char_S] => K [char_T] => Z [char_U] => A [char_V] => R [char_W] => T [char_X] => C [char_Y] => D [char_Z] => G [char_0] => 7 [char_1] => 5 [char_2] => 8 [char_3] => 0 [char_4] => 4 [char_5] => 6 [char_6] => 2 [char_7] => 3 [char_8] => 1 [char_9] => 9 )