Friday, 23 January 2015

Know git clone URL

To know the GIT clone URL from your repo

git remote -v

isset() function not working as expected in PHP 5.3.3

I had experienced this issue in array items.

when I try to check the particular array key existed in provided array, the isset function always returns true.

PHP Codesniffer - Ignore warning errors

 Use below command to ignore warnings while generating report. phpcs -n /path_to_directory/ The above command will result only errors and ig...