A class script is just a script. An instantiated class is an object.
Once you have instantiated a class object...
$class = new Myclass;
.. you can refer to the class object properties and methods like this:
$class->myFunction();
$class->myvar;
In the calling script, you could instantiate several class objects with different arguments, if you needed to:
$class1 = newMyclass($arg1, $arg2);
$class2 = newMyclass($arg3, $arg4);
If a class is called with arguments there would be a constructor function which uses the arguments to declare some class properties.