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