Jump to content

PhP bug? Or i am nuts?


sangoku

Recommended Posts

Hy i was making some class.... and i had a structure where i did the folowing

class a {
    
   public $t;
   function buga(){
       $this->t = 'buga';
   }
   function bla(){
       
       $b &=$this->t;
       echo $b;
   }
}

$a= new a;
$a->buga();
$a->bla(); //this outputs Notice: Undefined variable: b in C:\...\test.php on line 20

 

Either I am nuts or is this a bug.... Will ask on php bug report...

 

i posted it here http://bugs.php.net/bug.php?id=51555

 

can someone reproduce the error and tell me the OP and the version to.. so i can confirm it...

Link to comment
Share on other sites

Hy i was making some class.... and i had a structure where i did the folowing

class a {
    
   public $t;
   function buga(){
       $this->t = 'buga';
   }
   function bla(){
       
       $b &=$this->t;
       echo $b;
   }
}

$a= new a;
$a->buga();
$a->bla(); //this outputs Notice: Undefined variable: b in C:\...\test.php on line 20

 

Either I am nuts or is this a bug.... Will ask on php bug report...

 

i posted it here http://bugs.php.net/bug.php?id=51555

 

can someone reproduce the error and tell me the OP and the version to.. so i can confirm it...

 

define the $b as var $b in the start of the class

Link to comment
Share on other sites

oops yes

i didnt checked  that

 

run this one

 

<?php
class a {
    
   public $t;
   function buga(){
       $this->t = 'buga';
   }
   function bla(){
       
       $b =$this->t;
       echo $b;
   }
}

$a= new a;
$a->buga();
$a->bla();
?>

Link to comment
Share on other sites

Not a bug, just a confused developer.  I believe, like Rasmus said in your bug report, that you wanted to do an assignment by reference but what you were actually doing is a 'bitwise and' assignment.  Your code tries to do: $b = $b & $this->t and because $b has not been defined before trying to be used (to the right of the =) that is the cause of the error.

 

As stated, you probably wanted to use $b = &$this->t instead.

Link to comment
Share on other sites

Lol yup confused C or C++ and PhP... how to remove the false report...?

 

As was mentioned, the report is flagged as "bogus" which means it's not a bug at all. It will remain in the system so that anyone else wishing to submit a similar report in the future might stumble upon yours and notice their error.

Link to comment
Share on other sites

Shame on me Q.Q.... :wtf: :'(

 

By the way thanks for the compliment i am taking that as a compliment when someone calls me buts XD

At least you had a privilege to be answered by Rasmus

i don`t see any rasmus in this thread?

 

edit again... a mean the one who told me i had an memory corruption  in my CPU....  Who is he?

Link to comment
Share on other sites

know know, but why? is he famous? i see he has a big php message count.... and? is he fames programmer... a php developer???

 

And Maq if someone tells you are nuts, why duos he say it... think about it and then you will see it is actually a compliment if you understands from whom it comes.

Link to comment
Share on other sites

know know, but why is he famous? i see he has a big php message count.... and? is he fames programmer... a php developer???

As you can see from the link provided he's the creator of PHP.

Link to comment
Share on other sites

know know, but why is he famous? i see he has a big php message count.... and? is he fames programmer... a php developer???

As you can see from the link provided he's the creator of PHP.

[size=18pt]W[/size]oW  I am really honored. Really.... really really....

 

And one side note mean the philosophical not medical definition of nuts. And yes this is becoming a spam thread... but it is fun  ::)... am i riiiiiiiiight  ;D

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.