PHP Classes

File: tests/is_md5.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Mind Framework   tests/is_md5.php   Download  
File: tests/is_md5.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Mind Framework
Framework that implements several design patterns
Author: By
Last change:
Date: 1 year ago
Size: 276 bytes
 

Contents

Class file image Download
<?php

require_once '../src/Mind.php';

$Mind = new Mind();

$str = '123456';

if(
$Mind->is_md5($str)){
    echo
'This is an md5.';
} else {
    echo
'This is not an MD5.';
}

if(
$Mind->is_md5(md5($str))){
    echo
'This is an md5.';
} else {
    echo
'This is not an MD5.';
}