PHP CryptoJS.MD5().toString() equivalent [closed]

I have a problem.

I would like to have the equivalent of this in php:

CryptoJS.MD5().toString()

I use like this:

let result = CryptoJS.MD5('111-1111111'+'Test'+150000+1007+'Test').toString()

result = 653ad7612a93e4b61f99a7a48d8c7077

Php code is: $myString = "111-1111111"."Test".150000.1007."Test";

$hash = md5($myString);

$hash = 32a0173df31947238b515d3a0664c2a0

Because when I use md5() of php, I don’t get the same result.