Buondì,
vorrei capire come posso estrarre la versione GD
che è installatata.
Nel manuale PHP ho trovato questo esempio:
Codice PHP:
<?php
var_dump
(gd_info());
?>
output is:

Codice PHP:
array(9) {
  [
"GD Version"]=>
  
string(24"bundled (2.0 compatible)"
  
["FreeType Support"]=>
  
bool(false)
  [
"T1Lib Support"]=>
  
bool(false)
  [
"GIF Read Support"]=>
  
bool(true)
  [
"GIF Create Support"]=>
  
bool(false)
  [
"JPG Support"]=>
  
bool(false)
  [
"PNG Support"]=>
  
bool(true)
  [
"WBMP Support"]=>
  
bool(true)
  [
"XBM Support"]=>
  
bool(false)

come faccio ad estrarre un valore dall'array e stamparlo con echo oppure print?

Grasie :adhone: