PHP code example of aerticket / data-anonymizer
1. Go to this page and download the library: Download aerticket/data-anonymizer 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/ */
aerticket / data-anonymizer example snippets
use Aerticket\DataAnonymizer\Annotations as Anonymizer;
/**
* @Anonymizer\AnonymizableEntity(referenceDate="updatedAt")
*/
class SomeClass {
/**
* @var \DateTime
*/
$updatedAt;
/**
* @var string
* @Anonymizer\Anonymize()
*/
$personalData;
}
$this->anonymizationService->anonymizeEntity($record);
use Aerticket\DataAnonymizer\Annotations as Anonymizer;
/**
* @Anonymizer\AnonymizableEntity(referenceDate="updatedAt")
*/
class SomeClass {
/**
* @var \DateTime
*/
$updatedAt;
/**
* @var string
* @Anonymizer\Anonymize("[email protected]")
*/
$emailAddress;
}