PHP - Classes and Objects
You want to create a PHP class Product that sets name and price when an object is created. Which constructor correctly does this?
class Product {
public $name;
public $price;
public function __construct($name, $price) {
// Fill in
}
}