'this' reference

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yasmine
    New Member
    • Feb 2008
    • 64

    'this' reference

    hi friends,

    May i know what is the purpose of the 'this' in php? Is it pointer or reference?
    eg:

    [CODE=text]$this -> filename = $obj -> filename;
    $this -> filepath = $obj -> filepath;[/CODE]

    Is there any difference between the this reference in C++ and 'this' in PHP?

    Plz, clear my doubt....

    Thanx n regards
    Yas
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Originally posted by yasmine
    hi friends,

    May i know what is the purpose of the 'this' in php? Is it pointer or reference?
    eg:

    [CODE=text]$this -> filename = $obj -> filename;
    $this -> filepath = $obj -> filepath;[/CODE]

    Is there any difference between the this reference in C++ and 'this' in PHP?

    Plz, clear my doubt....

    Thanx n regards
    Yas
    [php]
    $this ->
    [/php]
    Is used within classes.
    Since i have yet to put my hand to classes i don't know much about them.
    google for php classes :)

    Comment

    Working...