views:

92

answers:

2

Hey all... When I run the code below, the if(property_exists(get_class($puzzleCharacters_encrypted), $solutionCharacter) keeps evaluating to false, but the echo statements preceding that are showing the correct information, so the properties are definitely there. Anything I might be missing? (PHP Version 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);

Thanks!

A: 

The second echo statement is not actually querying the object, it is outputting a string in which $solutionCharacter is put. That is no evidence that the property actually exists.

Then, you are querying for the property in the class of $puzzleCharacters_encrypted. It may well be that the property is not defined in the class, but in the object.

What happens if you try

if (property_exists($puzzleCharacters_encrypted, $solutionCharacter))

?

Pekka
I get the same result. $puzzle_solution and $puzzle_encryption print out the same value.
Eric
Also, I read that private properties will not be seen in PHP < 5.3, so I changed all of the properties from private to public.
Eric
I have also tried the following for the class parameter:$puzzleCharacters (the original class - throws an error)"puzzleCharacters" - same result for $puzzle_solution and $puzzle_encryption"puzzleCharacters_encrypted" - $puzzle_solution and $puzzle_encryption
Eric
@Eric What does `getVal` do? Can you show where the property actually gets defined? What does `$solutionCharacter` actually contain? Can you post the results of a `print_r($puzzleCharacters_encrypted)` ? Is the property mentioned there?
Pekka
A: 

Posting this as an answer because of the code...

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});
    }
}

The output of printr ($puzzleCharacters_encrypted):

.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 )
Eric
@Eric then it's obvious why propertyExists() must fail, because you are working with `char_xyz` in your code, but checking for `xyz` only.
Pekka
And btw, it would be easier to store all those characters in one array `$chars["A"] $chars["B"].... `
Pekka
Oh man, I feel like a total boob for missing that. Thanks! I changed $solutionCharacter to "char" . $solutionCharacter and it popped just as I wanted it to.I opted for a class for two reasons on this script: When using arrays to do the character swapping, I ended up using six arrays while using a class object cut that in half. The other reason, as you may have already guessed, is because I am just starting classes in PHP5. The last time I did them was in PHP3, so I'm a bit rusty!
Eric
@Eric you're welcome, no problem.
Pekka