PHP related stuff
Please donate if you are using this repo
Note: If you found this project helpful please give this repo a star.
- Mac PHP XDebug Downloads
- XDebug Wizard
- Sentiment Analysis
- jsonp_decode.php
- PayPal REST API SDK for PHP
- JSON Web Token Authentication for Laravel & Lumen
- Encryption
- HTTPS
- Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and trivial to integrate with web services
- Goutte is a screen scraping and web crawling library for PHP
Mac PHP XDebug Remote Debugging Package Downloads
Tailored Installation Instructions
phpInsight - Sentiment Analysis in PHP
<?php
$jsonp_string = preg_replace("/[^(]*\((.*)\)/", "$1", file_get_contents("http://api.pinterest.com/v1/urls/count.json?callback=receiveCount&url=http://9gag.com/"));
$json = json_decode($jsonp_string, true);
echo $json['count'];
?>