json - parse JIRA REST API response using php -


i tried several times , several methods parse long json data in jira rest api response. couldn't

i want parse json using php. used pure php , curl couldn’t. please me solve this. i'm new in rest api , php-curl

here jira rest response https://jira.atlassian.com/rest/api/latest/issue/jra-9

here sample php-curl code

<?php      $ch = curl_init();     curl_setopt($ch, curlopt_url, "https://jira.atlassian.com/rest/api/latest/issue/jra-9");     curl_exec($ch);     curl_close($ch); ?> 

finally. solve that.i have enable curl extension first on local server(wamp or xampp) issue

php extensions


Comments

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -