9951 explained code solutions for 126 technologies


php-gdHow to get GD library version


php -i | grep "GD Support" -A 2ctrl + c
php -i

gets information on PHP and installed libs

GD Support

filter output to show info related to GD only

-A 2

show next 2 lines together with found line