문제

How can I divide a md5 function with a colon?

Currently I have this:

$ms = md5($transactionid:$secretkey);

But that code is invalid.

I can divide it with a "." but not a ":"?

도움이 되었습니까?

해결책

$ms = md5($transactionid.':'.$secretkey);

You need to concatenate with .

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top