Function : base_encode

A coined function for php base64_encode(). It removes the equals sign from the generated hashed value. This does not affect the performance of base64_decode() function when decoding the hashed value.

Syntax
  base_encode($value)
  
  $value: value to be encoded
   
                  
Sample: base64_encode
  base64_encode('ab'); //YWI=
                  
Sample: base_encode
  base_encode('ab'); //YWI