<?php

$data =  ['key1'=> 'value1', 'key2'=> 'value2'];
$key = 'key';
echo md5(json_encode($data).$key);
        
        