PHP code example of vvasystem / errorstrait

1. Go to this page and download the library: Download vvasystem/errorstrait 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/ */

    

vvasystem / errorstrait example snippets



class Process 
{
	
    /**
     * Use error trait
     */
	use \Assistance\ErrorsTrait\ErrorTrait;

	//...

    /**
     * Run process
     * @return $this
     */
	public function run() {
		// do something

		// is error happened - add error
		$this->addError('This is error');

		return $this;
	}
}



//...
session_start();
//...

ocess();
$process->run();

if ($process->hasErrors()) {
	$errorArr = $process->getErrors();
	echo 'Current errors:' . PHP_EOL;
	foreach ($errorArr as $error) {
		echo $error . PHP_EOL;
	}

	$process->errorsToSession('process_errors');
}

//another page - get from session by key
$errors = new \Assistance\ErrorsTrait\Errors();
$errors->loadFromSession('process_errors');

if ($errors->hasErrors()) {
	$errorArr = $errors->getErrors();
	echo 'Errors for this page:' . PHP_EOL;
	foreach ($errorArr as $error) {
		echo $error . PHP_EOL;
	}
}