convert Bash command to php
Posted
by
Keverw
on Stack Overflow
See other posts from Stack Overflow
or by Keverw
Published on 2011-02-07T07:15:35Z
Indexed on
2011/02/07
7:25 UTC
Read the original article
Hit count: 173
This is the bash command echo -n x && (echo 618cf954-6576-491d-8ac6-a1b888c4705d |xxd -r -p |openssl base64|tr '/+' '_-')
This is my php
<?
$uuid = "618cf954-6576-491d-8ac6-a1b888c4705d";
$voiceid = "x" . $uuid;
$voiceid = base64_encode($voiceid);
$voiceid = str_replace("+", "-", $voiceid);
$voiceid = str_replace("/", "_", $voiceid);
echo $voiceid;
?>
The bash gives the right output, the php one isn't. I'm not sure what i need to do deferent in php.
© Stack Overflow or respective owner