27 lines
491 B
PHP
27 lines
491 B
PHP
<?php
|
|
|
|
$codeApporteurEncode = "Q00wMjk2";
|
|
// $codeApporteurEncode = "";
|
|
// $codeApporteurEncode = null;
|
|
|
|
$codeApporteurDecode = base64_decode($codeApporteurEncode);
|
|
|
|
echo "codeApporteurDecode=>$codeApporteurDecode";
|
|
exit();
|
|
|
|
/*
|
|
|
|
http://localhost/intersanteradiant/api/nokanda/decodage_base_64.php
|
|
|
|
encodé
|
|
CM0295 => Q00wMjk1
|
|
CM0289 => Q00wMjg5
|
|
CM0296 => Q00wMjk2
|
|
CM0301 => Q00wMzAx
|
|
CM0275 => Q00wMjc1
|
|
CM0276 => Q00wMjc2
|
|
CM0278 => Q00wMjc4
|
|
CM0281 => Q00wMjgx
|
|
|
|
*/
|