It does not matter which implementation is used on the server side if you are implementing the client, as long as you are both using the same technology.
In your case, as you haven't said that, but speaking of Jersey, it's about RESTful webservices. Trying to say it in one sentence, with restful webservices you (not necessarily, but usually) request a resource via HTTP, let's say a book at Amazon's webservice by providing an URL to that resource.
So all you basically have to do is executing an HTTP GET operation to said resource and process the format of the answer (e.g. a JSON object).
I don't know what you searched for, but if you google for php and restful werbservice client, you'll certainly find more than you need.