This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// @see: https://www.youtube.com/watch?v=6QnTNKOJk5A | |
// @see: https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events | |
// Define the default socket timeout | |
ini_set('default_socket_timeout', 360); | |
// Start Socket Server | |
$errno = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
\Error implements \Throwable | |
\Exception implements \Throwable | |
catch (\Error $e) - Will only catch \Error exceptions and children | |
catch (\Exception $e) - Will only catch \Exception exceptions and children | |
catch (\Throwable $e) - Will catch all | |
- - - - - - - - - - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Define the default socket timeout | |
ini_set('default_socket_timeout', 360); | |
// Start Socket Server | |
$errno = 0; | |
$errstr = ''; | |
$socket = stream_socket_server('tcp://0.0.0.0:8000', $errno, $errstr); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Container | |
{ | |
private array $instances = []; | |
public function set(string $key, $value): void | |
{ | |
if (is_string($value) || is_callable($value)) { | |
$value = $this->resolve($value); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* We are using Guzzle v6. | |
* composer require "guzzlehttp/guzzle=~6.0" | |
*/ | |
//Load composer. | |
require __DIR__ . '/vendor/autoload.php'; | |
//Use statements. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require __DIR__ . '/app/bootstrap.php'; | |
$bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER); | |
$objectManager = $bootstrap->getObjectManager(); | |
$objectManager->get('\Magento\Framework\App\State')->setAreaCode('adminhtml'); | |
$registry = $objectManager->get('\Magento\Framework\Registry'); | |
$registry->register('isSecureArea', 'true'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Quando precisamos pegar o access_token e token_secret. | |
* | |
* Precisamos ter a OAuth lib instalada no PHP, caso ela não esteja presente, no Ubuntu podemos instalar com: | |
* $ sudo apt install php-oauth | |
*/ | |
function usage() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Quando precisamos pegar o request_token e o token_verifier. | |
* | |
* Precisamos ter a OAuth lib instalada no PHP, caso ela não esteja presente, no Ubuntu podemos instalar com: | |
* $ sudo apt install php-oauth | |
*/ | |
function usage() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @see http://www.corporativo.correios.com.br/encomendas/sigepweb/doc/Manual_de_Implementacao_do_Web_Service_SIGEP_WEB.pdf | |
*/ | |
// homologação | |
$soap = new \SoapClient('https://apphom.correios.com.br/SigepMasterJPA/AtendeClienteService/AtendeCliente?wsdl', ['cache_wsdl' => WSDL_CACHE_NONE]); | |
// configs | |
$usuario = 'sigep'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Quando já temos o access_token e o token_secret. | |
* | |
* Precisamos ter a OAuth lib instalada no PHP, caso ela não esteja presente, no Ubuntu podemos instalar com: | |
* $ sudo apt install php-oauth | |
*/ | |
$url = 'https://<mage-host>/api/rest/'; |
NewerOlder