Cerchero' di impegnarmi:
Codice PHP:
class Elenco {
private $root;
public function __construct($path) {
$this->root = $path
}
public function getRoot() {
return $this->root;
}
}
$nome_cartella = 'foto-mare';
$elenco = new Elenco($nome_cartella);
echo $elenco->getRoot();

Rispondi quotando
