1. Go to this page and download the library: Download n-singularity/async 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/ */
n-singularity / async example snippets
function sendEmail($email, $bodyEmail){
//code to send email
}
function foo(){
Nsingularity\Async\Async::globalFunction("sendEmail", ["[email protected]", "body email html"]);
echo("done");
}
class Example
{
public function sendEmail($email, $bodyEmail){
//code to send email
}
}
function foo(){
Nsingularity\Async\Async::objectFunction(new Example, "sendEmail", ["[email protected]", "body email html"]);
echo("done");
}
class Example implements \Nsingularity\Async\AsyncableClassInterface
{
private $email;
private $bodyEmail;
public function __construct($email, $bodyEmail){
$this->email = $email;
$this->bodyEmail = $bodyEmail;
}
public function handler(){
//code to send email
}
}
function foo(){
Nsingularity\Async\Async::object(new Example("[email protected]", "body email html"));
echo("done");
}