my Q is there any way to get the word count or the content of Microsoft word file in PHP?
Yes. consider the contents of the word document a string, and write a word count function to count the words in that string. There is code for such a task here: http://www.reconn.us/count_words.html
Importing the .doc file might be a harder task. You can do it by implementing a com object. There might be a simpler way, though.