Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

149
Views
PHP base64_encode giving different result to Javascript btoa

I have the dummy account:
Username: giancagallardo@gmail.com
Password: Av3$truz

When I try to use PHP base64_encode using the code base64_encode($userName . ":" . $password);

I get "Z2lhbmNhZ2FsbGFyZG9AZ21haWwuY29tOkF2Mw"

When I use Javascript BTOA using the code btoa(userName + ":" + password) I get "Z2lhbmNhZ2FsbGFyZG9AZ21haWwuY29tOkF2MyR0cnV6".

I am supposed to be getting the second one in PHP, what am I doing wrong?

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Since this is your code:

$userName = "giancagallardo@gmail.com";
$password = "Av3$truz";

echo base64_encode($userName . ":" . $password);

PHP is trying to get the value of $truz, change it to this:

$userName = "giancagallardo@gmail.com";
$password = 'Av3$truz'; //now it does not try to evaluate it or you could scape $ like "Av3\$truz"

echo base64_encode($userName . ":" . $password);
about 4 years ago · Juan Pablo Isaza Report

0

I get the same results.

echo base64_encode('hello' . ':' . 'how are you?');

PHP eval

alert(btoa('hello' + ':' + 'how are you?'));

JS Fiddle

The result is in both cases:

aGVsbG86aG93IGFyZSB5b3U/

In case you don't get the same, can you give an example, just like I did?

Note that character encoding might be a factor here, but it is probably more likely that your variables don't have the same content.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!