1. Go to this page and download the library: Download crphp/core library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
crphp / core example snippets
use COM;
use \Exception;
use \RuntimeException;
use Crphp\Core\Sistema\Conector;
class Wmi extends Conector
{
public function conectar($host, $usuario = null, $senha = null, $porta = 135, $timeout = 10)
{
// Aqui você abre uma comunicação com o host remoto
}
public function executar($instrucao)
{
// Aqui você executa uma instrução remotamente
}
/*
* Os métodos status() e mensagemErro() possuem um comportamento genérico, provavelmente
* você não irá precisar reescrevê-los
*/
}
use \Exception;
use \RuntimeException;
use phpseclib\Net\SSH2;
use Crphp\Core\Sistema\Conector;
class Ssh extends Conector
{
public function conectar($host, $usuario = null, $senha = null, $porta = 135, $timeout = 10)
{
// Aqui você abre uma comunicação com o host remoto
}
public function executar($instrucao)
{
// Aqui você executa uma instrução remotamente
}
/*
* Os métodos status() e mensagemErro() possuem um comportamento genérico, provavelmente
* você não irá precisar reescrevê-los
*/
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.