mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-18 21:28:10 +01:00
Fix array declaration
This commit is contained in:
parent
1394469c06
commit
ef377224ff
@ -39,22 +39,22 @@ function
|
||||
base_16_to_64 ($num)
|
||||
{
|
||||
$m = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_';
|
||||
$hex2bin = ['0000', # 0
|
||||
'0001', # 1
|
||||
'0010', # 2
|
||||
'0011', # 3
|
||||
'0100', # 4
|
||||
'0101', # 5
|
||||
'0110', # 6
|
||||
'0111', # 7
|
||||
'1000', # 8
|
||||
'1001', # 9
|
||||
'1010', # a
|
||||
'1011', # b
|
||||
'1100', # c
|
||||
'1101', # d
|
||||
'1110', # e
|
||||
'1111']; # f
|
||||
$hex2bin = array ('0000', # 0
|
||||
'0001', # 1
|
||||
'0010', # 2
|
||||
'0011', # 3
|
||||
'0100', # 4
|
||||
'0101', # 5
|
||||
'0110', # 6
|
||||
'0111', # 7
|
||||
'1000', # 8
|
||||
'1001', # 9
|
||||
'1010', # a
|
||||
'1011', # b
|
||||
'1100', # c
|
||||
'1101', # d
|
||||
'1110', # e
|
||||
'1111'); # f
|
||||
$o = '';
|
||||
$b = '';
|
||||
$i = 0;
|
||||
@ -919,4 +919,4 @@ jirafeau_async_end ($ref, $code)
|
||||
jirafeau_async_delete ($ref);
|
||||
return $md5_link . NL . $delete_link_code;
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user