I know there is a plugin available . But not sure how good that is?
The plugin works well, but really just takes jenkins/hudson information and places it in redmine. If you have an environment where you can already access the jenkins web page (default is server:8080) then I haven't found a ton of use for it right now. If you are in an environment where users can only access redmine, then I think it would be very useful.
Does it also have PHPDocumentator embedded in it apart from PHPUnit tests? I am basically in need of continuous integration for deploying my code from one environment to another one like from development to staging to production .
We use xUnit type unit tests in our embedded C code, and the results get output in an .xml file. This .xml file is read using the Jenkins xUnit plugin: https://wiki.jenkins-ci.org/display/JENKINS/xUnit+Plugin . It looks like this supports phpUnit in a similar manner to cppUnit output.
As for the documentation, we use doxygen (along with the jenkins doxygen plugin), but some simple googling found that phpdoc is supported with jenkins (along with articles setting it up).
See the multiple other [jenkins] related questions for how it performs as a CI server, but we've been happy with it.