I think that it really depends on the application. If you were making an enterprise level application that needed to do lots and lots of server side jobs, or something where speed was a primary concern, then converting parts of it to Java (or even a speed oriented compiled language like C if its a major concern) would be a good idea.
However, in terms of PHP being able to handle a more normal style website, that's very likely.
Also, I'd like a bit of clarification. Do you mean for Java to work as the backend of the site, actually taking a part in serving the HTML code for the pages, or do you mean for Java Applets to be embedded in the site for the client to interact with? That plays a big role in the decision, as I've seen it done both ways. I think that clientside, you would want to use Java or something similar for a realtime APP, as it puts much less strain on the server and will generally be smoother for the user to work with, not minding the Java Runtime that needs to be there.
Really, it all depends on the application. Choose the right programming language for the job. If you're running a more typical website, then PHP will do just fine. If you need to do some very specific things that rely on speed, a traditional programming language will probably work better on the backend. And you can always mix and match. ^_^
-Nicholas