This file contains hidden or 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 | |
/** | |
* Send email | |
* @param string|array $email | |
* @param object $from | |
* @param string $subject | |
* @param string $message | |
* @param string $headers optional | |
*/ | |
function send_email($email, $from, $subject, $message, $headers = null) |
This file contains hidden or 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 | |
/** | |
* Compare two images and determine how much they similar, in percentages. | |
*/ | |
class ImagesComparator | |
{ | |
private const ACCEPTED_IMAGE_TYPES = [IMAGETYPE_JPEG, IMAGETYPE_PNG]; | |
/** | |
* Calculate the images similarity in percentages. |