如何使用PHP应用程序从JIRA获取数据?

how to fetch data from JIRA (Bug tracking tool) using PHP application? is it possible or not? Thanks, Sagar.

Your best bet is probably to use the SOAP api for jira at http://confluence.atlassian.com/display/JIRADEV/JIRA+RPC+Services

Your best bet is probably to try the built in php soap client.

There are a number of PHP clients that implement the SOAP interface so you can post issues, create users, execute searches using JQL, and anything else provided by the API. One such project is on GitHub at https://github.com/cpliakas/jira-client, and it is also available as a Composer package on Packagist.org at https://packagist.org/packages/cpliakas/jira.