Com_Exception Using Word

This is more of a PHP question however my application is written using the Yii Framework. I am creating a word document from a template using a web app I wrote using COM and I receive an error when I try to release the object

    $word = new COM("Word.Application") or die("Unable to instantiate Word");


    ....


    $word->Quit(); 


    $word->Release(); 


    $word = null; 

When I use the Release method I get Error [0x800706be] The remote procedure call failed. There are no errors in the Event Viewer and in fact it reports that Microsoft Office session lasted 17 seconds and session ended normally, word is not still active in task manager and the document is generated as per the code. My question is do I need to use the Release method - is Quit and setting the object to null sufficient? This is running on an Apache Server using PHP Version 5.4.7.