Przejdź do głównej zawartości

Posty

Wyświetlanie postów z stycznia 22, 2023

block chain php

komendy wywołujące include('blockchain.php'); $run = new shell_exec; $string=$run->ini_set('blocks',0,0,'chain'); $block=$run->ini_set('string',0,1,'chain'); $block=$run->ini_set('string',1,1,'chain'); $block=$run->ini_set('string',2,1,'chain'); kod blockchain.php class shell_exec { private $string; private $type; private $action; private $net; private $position; private $output; public function ini_set($string, $type, $action, $net)  { if((isset($string))&&(isset($type))&&(isset($action))&&(isset($net))) { $this->string = $string; $this->type = $type; $this->action = $action; $this->net = $net; $this->position = NULL; if(self::catch())  { $output = self::catch(); $this->output = $output; return $this->output; }  else  { return false;  } } else  { return false; ...