Skip to content

Instantly share code, notes, and snippets.

@parzibyte

parzibyte/gd.php Secret

Created October 15, 2020 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/08888715a383d88c5e69b07b6c31f6a4 to your computer and use it in GitHub Desktop.
Save parzibyte/08888715a383d88c5e69b07b6c31f6a4 to your computer and use it in GitHub Desktop.
<?php
if (extension_loaded("gd") && function_exists("gd_info")) {
echo "Ok. GD cargada";
} else {
echo "GD no instalada. Si quieres puedes probar instalarla en Linux: https://parzibyte.me/blog/2019/06/24/instalar-libreria-gd-php-linux-ubuntu/";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment