“PHP -инъекция” Ответ

PHP -инъекция

class Component {
    private $logger;

    public function __construct(Logger $logger) {
        $this->logger = $logger;
    }
}
Bombay

PHP -инъекция

class Example1
{
   public $cache_file;

   function __construct()
   {
      // some PHP code...
   }

   function __destruct()
   {
      $file = "/var/www/cache/tmp/{$this->cache_file}";
      if (file_exists($file)) @unlink($file);
   }
}

// some PHP code...

$user_data = unserialize($_GET['data']);

// some PHP code...
calyCoder

Ответы похожие на “PHP -инъекция”

Вопросы похожие на “PHP -инъекция”

Больше похожих ответов на “PHP -инъекция” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования