Possible Duplicate:
PHP class instantiation. To use or not to use the parenthesis?
I'm learning PHP from an O'reilly book "Learning PHP, MySQL and Javascript". I'm half way through learning about objects etc.
I've noticed that sometimes the writer calls objects in two different ways.
$example = new Object
$example = new Object()
They both seem to work fine for me. Is there a preferred way or best practice? Is there a reason for this?