Q. In the following source code, what is/are the properties?
Code:
<?php
class Person
{
public $name;
function showName()
{
echo "My name is $name";
}
}
?>
β
Correct Answer: (B)
public $name;