...

/

Solution Review: $this Keyword

Solution Review: $this Keyword

Let's look at the solution of the $this Keyword challenge.

We'll cover the following...

Solution

Press + to interact
<?php
class User
{
public $firstName;
public $lastName;
public function hello() {
return "hello, " . $this -> firstName;
}
}
function test()
{
$user1 = new User();
$user1 -> firstName = 'Jonnie';
$user1 -> lastName = 'Roe';
return $user1 -> hello();
}
echo test();
?>

Explanation

  • Line 2: We write the User
...