Category: PHP

2

PHP Script: Generate random usernames

You can use this script to generate random usernames. 1. Main Scriptmain.php contains the main source code.Edit following variables to customize your script: $common_string : Any string to attach at the end of username...

1

Guzzle: How to capture requests responses using Fiddler

Fiddler is a wonderful free web debugging proxy tool from Telerik. It helps you debug web applications by capturing network traffic. You can get it here: http://www.telerik.com/download/fiddler/fiddler2 When using Web HTTP Clients like Guzzle,...

0

Remove double quotes from Guzzle Cookies

I very recently started using the guzzle 6 PHP library to data mine some sites. It’s worked great so far. One of the sites I’m mining needs cookies containing an ‘=’ sign. Guzzle always...

2

Editing Code In a PHAR file

A PHAR file is a PHp ARchive file. You can create an archive of your PHP library and store it into a PHAR file for easy distribution. If you want to change some code...