Which one of the following method is invoked when a value is assigned to an undefined property?

Which one of the following method is invoked when a value is assigned to an undefined property? Correct Answer __set()

The __set() method is invoked when client code attempts to assign to an undefined property. It is passed two arguments: the name of the property, and the value the client is attempting to set.

Related Questions

Which method is invoked when an undefined property is accessed ?
Which method is invoked when an undefined property is accessed?