Calling URI * */ public function __construct($url){ $this->path = $url['path']; $this->color = substr($url['color'], 1); } /* Colorate svg * */ public function color(){ header('Content-Type: image/svg+xml'); // On crée la partie ajoutée $stylesheet = "\n"; // On récupère le fichier $file = file_get_contents(__PUBLIC__.'/'.$this->path); // On ajoute le style $file = str_replace('', $stylesheet, $file); echo $file; } /* POST-CALL * */ public function __destruct(){ } }