@@ -30,26 +30,26 @@ discard block |
||
30 | 30 | */ |
31 | 31 | |
32 | 32 | if (!defined('PHP_VERSION_ID')) { |
33 | - // This constant was introduced in PHP 5.2.7 |
|
34 | - $RandomCompatversion = array_map('intval', explode('.', PHP_VERSION)); |
|
35 | - define( |
|
36 | - 'PHP_VERSION_ID', |
|
37 | - $RandomCompatversion[0] * 10000 |
|
38 | - + $RandomCompatversion[1] * 100 |
|
39 | - + $RandomCompatversion[2] |
|
40 | - ); |
|
41 | - $RandomCompatversion = null; |
|
33 | + // This constant was introduced in PHP 5.2.7 |
|
34 | + $RandomCompatversion = array_map('intval', explode('.', PHP_VERSION)); |
|
35 | + define( |
|
36 | + 'PHP_VERSION_ID', |
|
37 | + $RandomCompatversion[0] * 10000 |
|
38 | + + $RandomCompatversion[1] * 100 |
|
39 | + + $RandomCompatversion[2] |
|
40 | + ); |
|
41 | + $RandomCompatversion = null; |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
45 | 45 | * PHP 7.0.0 and newer have these functions natively. |
46 | 46 | */ |
47 | 47 | if (PHP_VERSION_ID >= 70000) { |
48 | - return; |
|
48 | + return; |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | if (!defined('RANDOM_COMPAT_READ_BUFFER')) { |
52 | - define('RANDOM_COMPAT_READ_BUFFER', 8); |
|
52 | + define('RANDOM_COMPAT_READ_BUFFER', 8); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | $RandomCompatDIR = dirname(__FILE__); |
@@ -59,167 +59,167 @@ discard block |
||
59 | 59 | require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'error_polyfill.php'; |
60 | 60 | |
61 | 61 | if (!is_callable('random_bytes')) { |
62 | - /** |
|
63 | - * PHP 5.2.0 - 5.6.x way to implement random_bytes() |
|
64 | - * |
|
65 | - * We use conditional statements here to define the function in accordance |
|
66 | - * to the operating environment. It's a micro-optimization. |
|
67 | - * |
|
68 | - * In order of preference: |
|
69 | - * 1. Use libsodium if available. |
|
70 | - * 2. fread() /dev/urandom if available (never on Windows) |
|
71 | - * 3. mcrypt_create_iv($bytes, MCRYPT_DEV_URANDOM) |
|
72 | - * 4. COM('CAPICOM.Utilities.1')->GetRandom() |
|
73 | - * |
|
74 | - * See RATIONALE.md for our reasoning behind this particular order |
|
75 | - */ |
|
76 | - if (extension_loaded('libsodium')) { |
|
77 | - // See random_bytes_libsodium.php |
|
78 | - if (PHP_VERSION_ID >= 50300 && is_callable('\\Sodium\\randombytes_buf')) { |
|
79 | - require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_libsodium.php'; |
|
80 | - } elseif (method_exists('Sodium', 'randombytes_buf')) { |
|
81 | - require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_libsodium_legacy.php'; |
|
82 | - } |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * Reading directly from /dev/urandom: |
|
87 | - */ |
|
88 | - if (DIRECTORY_SEPARATOR === '/') { |
|
89 | - // DIRECTORY_SEPARATOR === '/' on Unix-like OSes -- this is a fast |
|
90 | - // way to exclude Windows. |
|
91 | - $RandomCompatUrandom = true; |
|
92 | - $RandomCompat_basedir = ini_get('open_basedir'); |
|
93 | - |
|
94 | - if (!empty($RandomCompat_basedir)) { |
|
95 | - $RandomCompat_open_basedir = explode( |
|
96 | - PATH_SEPARATOR, |
|
97 | - strtolower($RandomCompat_basedir) |
|
98 | - ); |
|
99 | - $RandomCompatUrandom = (array() !== array_intersect( |
|
100 | - array('/dev', '/dev/', '/dev/urandom'), |
|
101 | - $RandomCompat_open_basedir |
|
102 | - )); |
|
103 | - $RandomCompat_open_basedir = null; |
|
104 | - } |
|
105 | - |
|
106 | - if ( |
|
107 | - !is_callable('random_bytes') |
|
108 | - && |
|
109 | - $RandomCompatUrandom |
|
110 | - && |
|
111 | - @is_readable('/dev/urandom') |
|
112 | - ) { |
|
113 | - // Error suppression on is_readable() in case of an open_basedir |
|
114 | - // or safe_mode failure. All we care about is whether or not we |
|
115 | - // can read it at this point. If the PHP environment is going to |
|
116 | - // panic over trying to see if the file can be read in the first |
|
117 | - // place, that is not helpful to us here. |
|
118 | - |
|
119 | - // See random_bytes_dev_urandom.php |
|
120 | - require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_dev_urandom.php'; |
|
121 | - } |
|
122 | - // Unset variables after use |
|
123 | - $RandomCompat_basedir = null; |
|
124 | - } else { |
|
125 | - $RandomCompatUrandom = false; |
|
126 | - } |
|
127 | - |
|
128 | - /** |
|
129 | - * mcrypt_create_iv() |
|
130 | - * |
|
131 | - * We only want to use mcypt_create_iv() if: |
|
132 | - * |
|
133 | - * - random_bytes() hasn't already been defined |
|
134 | - * - the mcrypt extensions is loaded |
|
135 | - * - One of these two conditions is true: |
|
136 | - * - We're on Windows (DIRECTORY_SEPARATOR !== '/') |
|
137 | - * - We're not on Windows and /dev/urandom is readabale |
|
138 | - * (i.e. we're not in a chroot jail) |
|
139 | - * - Special case: |
|
140 | - * - If we're not on Windows, but the PHP version is between |
|
141 | - * 5.6.10 and 5.6.12, we don't want to use mcrypt. It will |
|
142 | - * hang indefinitely. This is bad. |
|
143 | - * - If we're on Windows, we want to use PHP >= 5.3.7 or else |
|
144 | - * we get insufficient entropy errors. |
|
145 | - */ |
|
146 | - if ( |
|
147 | - !is_callable('random_bytes') |
|
148 | - && |
|
149 | - // Windows on PHP < 5.3.7 is broken, but non-Windows is not known to be. |
|
150 | - (DIRECTORY_SEPARATOR === '/' || PHP_VERSION_ID >= 50307) |
|
151 | - && |
|
152 | - // Prevent this code from hanging indefinitely on non-Windows; |
|
153 | - // see https://bugs.php.net/bug.php?id=69833 |
|
154 | - ( |
|
155 | - DIRECTORY_SEPARATOR !== '/' || |
|
156 | - (PHP_VERSION_ID <= 50609 || PHP_VERSION_ID >= 50613) |
|
157 | - ) |
|
158 | - && |
|
159 | - extension_loaded('mcrypt') |
|
160 | - ) { |
|
161 | - // See random_bytes_mcrypt.php |
|
162 | - require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_mcrypt.php'; |
|
163 | - } |
|
164 | - $RandomCompatUrandom = null; |
|
165 | - |
|
166 | - /** |
|
167 | - * This is a Windows-specific fallback, for when the mcrypt extension |
|
168 | - * isn't loaded. |
|
169 | - */ |
|
170 | - if ( |
|
171 | - !is_callable('random_bytes') |
|
172 | - && |
|
173 | - extension_loaded('com_dotnet') |
|
174 | - && |
|
175 | - class_exists('COM') |
|
176 | - ) { |
|
177 | - $RandomCompat_disabled_classes = preg_split( |
|
178 | - '#\s*,\s*#', |
|
179 | - strtolower(ini_get('disable_classes')) |
|
180 | - ); |
|
181 | - |
|
182 | - if (!in_array('com', $RandomCompat_disabled_classes)) { |
|
183 | - try { |
|
184 | - $RandomCompatCOMtest = new COM('CAPICOM.Utilities.1'); |
|
185 | - if (method_exists($RandomCompatCOMtest, 'GetRandom')) { |
|
186 | - // See random_bytes_com_dotnet.php |
|
187 | - require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_com_dotnet.php'; |
|
188 | - } |
|
189 | - } catch (com_exception $e) { |
|
190 | - // Don't try to use it. |
|
191 | - } |
|
192 | - } |
|
193 | - $RandomCompat_disabled_classes = null; |
|
194 | - $RandomCompatCOMtest = null; |
|
195 | - } |
|
196 | - |
|
197 | - /** |
|
198 | - * throw new Exception |
|
199 | - */ |
|
200 | - if (!is_callable('random_bytes')) { |
|
201 | - /** |
|
202 | - * We don't have any more options, so let's throw an exception right now |
|
203 | - * and hope the developer won't let it fail silently. |
|
204 | - * |
|
205 | - * @param mixed $length |
|
206 | - * @psalm-suppress InvalidReturnType |
|
207 | - * @throws Exception |
|
208 | - * @return string |
|
209 | - */ |
|
210 | - function random_bytes($length) |
|
211 | - { |
|
212 | - unset($length); // Suppress "variable not used" warnings. |
|
213 | - throw new Exception( |
|
214 | - 'There is no suitable CSPRNG installed on your system' |
|
215 | - ); |
|
216 | - return ''; |
|
217 | - } |
|
218 | - } |
|
62 | + /** |
|
63 | + * PHP 5.2.0 - 5.6.x way to implement random_bytes() |
|
64 | + * |
|
65 | + * We use conditional statements here to define the function in accordance |
|
66 | + * to the operating environment. It's a micro-optimization. |
|
67 | + * |
|
68 | + * In order of preference: |
|
69 | + * 1. Use libsodium if available. |
|
70 | + * 2. fread() /dev/urandom if available (never on Windows) |
|
71 | + * 3. mcrypt_create_iv($bytes, MCRYPT_DEV_URANDOM) |
|
72 | + * 4. COM('CAPICOM.Utilities.1')->GetRandom() |
|
73 | + * |
|
74 | + * See RATIONALE.md for our reasoning behind this particular order |
|
75 | + */ |
|
76 | + if (extension_loaded('libsodium')) { |
|
77 | + // See random_bytes_libsodium.php |
|
78 | + if (PHP_VERSION_ID >= 50300 && is_callable('\\Sodium\\randombytes_buf')) { |
|
79 | + require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_libsodium.php'; |
|
80 | + } elseif (method_exists('Sodium', 'randombytes_buf')) { |
|
81 | + require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_libsodium_legacy.php'; |
|
82 | + } |
|
83 | + } |
|
84 | + |
|
85 | + /** |
|
86 | + * Reading directly from /dev/urandom: |
|
87 | + */ |
|
88 | + if (DIRECTORY_SEPARATOR === '/') { |
|
89 | + // DIRECTORY_SEPARATOR === '/' on Unix-like OSes -- this is a fast |
|
90 | + // way to exclude Windows. |
|
91 | + $RandomCompatUrandom = true; |
|
92 | + $RandomCompat_basedir = ini_get('open_basedir'); |
|
93 | + |
|
94 | + if (!empty($RandomCompat_basedir)) { |
|
95 | + $RandomCompat_open_basedir = explode( |
|
96 | + PATH_SEPARATOR, |
|
97 | + strtolower($RandomCompat_basedir) |
|
98 | + ); |
|
99 | + $RandomCompatUrandom = (array() !== array_intersect( |
|
100 | + array('/dev', '/dev/', '/dev/urandom'), |
|
101 | + $RandomCompat_open_basedir |
|
102 | + )); |
|
103 | + $RandomCompat_open_basedir = null; |
|
104 | + } |
|
105 | + |
|
106 | + if ( |
|
107 | + !is_callable('random_bytes') |
|
108 | + && |
|
109 | + $RandomCompatUrandom |
|
110 | + && |
|
111 | + @is_readable('/dev/urandom') |
|
112 | + ) { |
|
113 | + // Error suppression on is_readable() in case of an open_basedir |
|
114 | + // or safe_mode failure. All we care about is whether or not we |
|
115 | + // can read it at this point. If the PHP environment is going to |
|
116 | + // panic over trying to see if the file can be read in the first |
|
117 | + // place, that is not helpful to us here. |
|
118 | + |
|
119 | + // See random_bytes_dev_urandom.php |
|
120 | + require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_dev_urandom.php'; |
|
121 | + } |
|
122 | + // Unset variables after use |
|
123 | + $RandomCompat_basedir = null; |
|
124 | + } else { |
|
125 | + $RandomCompatUrandom = false; |
|
126 | + } |
|
127 | + |
|
128 | + /** |
|
129 | + * mcrypt_create_iv() |
|
130 | + * |
|
131 | + * We only want to use mcypt_create_iv() if: |
|
132 | + * |
|
133 | + * - random_bytes() hasn't already been defined |
|
134 | + * - the mcrypt extensions is loaded |
|
135 | + * - One of these two conditions is true: |
|
136 | + * - We're on Windows (DIRECTORY_SEPARATOR !== '/') |
|
137 | + * - We're not on Windows and /dev/urandom is readabale |
|
138 | + * (i.e. we're not in a chroot jail) |
|
139 | + * - Special case: |
|
140 | + * - If we're not on Windows, but the PHP version is between |
|
141 | + * 5.6.10 and 5.6.12, we don't want to use mcrypt. It will |
|
142 | + * hang indefinitely. This is bad. |
|
143 | + * - If we're on Windows, we want to use PHP >= 5.3.7 or else |
|
144 | + * we get insufficient entropy errors. |
|
145 | + */ |
|
146 | + if ( |
|
147 | + !is_callable('random_bytes') |
|
148 | + && |
|
149 | + // Windows on PHP < 5.3.7 is broken, but non-Windows is not known to be. |
|
150 | + (DIRECTORY_SEPARATOR === '/' || PHP_VERSION_ID >= 50307) |
|
151 | + && |
|
152 | + // Prevent this code from hanging indefinitely on non-Windows; |
|
153 | + // see https://bugs.php.net/bug.php?id=69833 |
|
154 | + ( |
|
155 | + DIRECTORY_SEPARATOR !== '/' || |
|
156 | + (PHP_VERSION_ID <= 50609 || PHP_VERSION_ID >= 50613) |
|
157 | + ) |
|
158 | + && |
|
159 | + extension_loaded('mcrypt') |
|
160 | + ) { |
|
161 | + // See random_bytes_mcrypt.php |
|
162 | + require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_mcrypt.php'; |
|
163 | + } |
|
164 | + $RandomCompatUrandom = null; |
|
165 | + |
|
166 | + /** |
|
167 | + * This is a Windows-specific fallback, for when the mcrypt extension |
|
168 | + * isn't loaded. |
|
169 | + */ |
|
170 | + if ( |
|
171 | + !is_callable('random_bytes') |
|
172 | + && |
|
173 | + extension_loaded('com_dotnet') |
|
174 | + && |
|
175 | + class_exists('COM') |
|
176 | + ) { |
|
177 | + $RandomCompat_disabled_classes = preg_split( |
|
178 | + '#\s*,\s*#', |
|
179 | + strtolower(ini_get('disable_classes')) |
|
180 | + ); |
|
181 | + |
|
182 | + if (!in_array('com', $RandomCompat_disabled_classes)) { |
|
183 | + try { |
|
184 | + $RandomCompatCOMtest = new COM('CAPICOM.Utilities.1'); |
|
185 | + if (method_exists($RandomCompatCOMtest, 'GetRandom')) { |
|
186 | + // See random_bytes_com_dotnet.php |
|
187 | + require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_com_dotnet.php'; |
|
188 | + } |
|
189 | + } catch (com_exception $e) { |
|
190 | + // Don't try to use it. |
|
191 | + } |
|
192 | + } |
|
193 | + $RandomCompat_disabled_classes = null; |
|
194 | + $RandomCompatCOMtest = null; |
|
195 | + } |
|
196 | + |
|
197 | + /** |
|
198 | + * throw new Exception |
|
199 | + */ |
|
200 | + if (!is_callable('random_bytes')) { |
|
201 | + /** |
|
202 | + * We don't have any more options, so let's throw an exception right now |
|
203 | + * and hope the developer won't let it fail silently. |
|
204 | + * |
|
205 | + * @param mixed $length |
|
206 | + * @psalm-suppress InvalidReturnType |
|
207 | + * @throws Exception |
|
208 | + * @return string |
|
209 | + */ |
|
210 | + function random_bytes($length) |
|
211 | + { |
|
212 | + unset($length); // Suppress "variable not used" warnings. |
|
213 | + throw new Exception( |
|
214 | + 'There is no suitable CSPRNG installed on your system' |
|
215 | + ); |
|
216 | + return ''; |
|
217 | + } |
|
218 | + } |
|
219 | 219 | } |
220 | 220 | |
221 | 221 | if (!is_callable('random_int')) { |
222 | - require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_int.php'; |
|
222 | + require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_int.php'; |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | $RandomCompatDIR = null; |
@@ -29,7 +29,8 @@ discard block |
||
29 | 29 | * SOFTWARE. |
30 | 30 | */ |
31 | 31 | |
32 | -if (!defined('PHP_VERSION_ID')) { |
|
32 | +if (!defined('PHP_VERSION_ID')) |
|
33 | +{ |
|
33 | 34 | // This constant was introduced in PHP 5.2.7 |
34 | 35 | $RandomCompatversion = array_map('intval', explode('.', PHP_VERSION)); |
35 | 36 | define( |
@@ -44,11 +45,13 @@ discard block |
||
44 | 45 | /** |
45 | 46 | * PHP 7.0.0 and newer have these functions natively. |
46 | 47 | */ |
47 | -if (PHP_VERSION_ID >= 70000) { |
|
48 | +if (PHP_VERSION_ID >= 70000) |
|
49 | +{ |
|
48 | 50 | return; |
49 | 51 | } |
50 | 52 | |
51 | -if (!defined('RANDOM_COMPAT_READ_BUFFER')) { |
|
53 | +if (!defined('RANDOM_COMPAT_READ_BUFFER')) |
|
54 | +{ |
|
52 | 55 | define('RANDOM_COMPAT_READ_BUFFER', 8); |
53 | 56 | } |
54 | 57 | |
@@ -58,7 +61,8 @@ discard block |
||
58 | 61 | require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'cast_to_int.php'; |
59 | 62 | require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'error_polyfill.php'; |
60 | 63 | |
61 | -if (!is_callable('random_bytes')) { |
|
64 | +if (!is_callable('random_bytes')) |
|
65 | +{ |
|
62 | 66 | /** |
63 | 67 | * PHP 5.2.0 - 5.6.x way to implement random_bytes() |
64 | 68 | * |
@@ -73,11 +77,15 @@ discard block |
||
73 | 77 | * |
74 | 78 | * See RATIONALE.md for our reasoning behind this particular order |
75 | 79 | */ |
76 | - if (extension_loaded('libsodium')) { |
|
80 | + if (extension_loaded('libsodium')) |
|
81 | + { |
|
77 | 82 | // See random_bytes_libsodium.php |
78 | - if (PHP_VERSION_ID >= 50300 && is_callable('\\Sodium\\randombytes_buf')) { |
|
83 | + if (PHP_VERSION_ID >= 50300 && is_callable('\\Sodium\\randombytes_buf')) |
|
84 | + { |
|
79 | 85 | require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_libsodium.php'; |
80 | - } elseif (method_exists('Sodium', 'randombytes_buf')) { |
|
86 | + } |
|
87 | + elseif (method_exists('Sodium', 'randombytes_buf')) |
|
88 | + { |
|
81 | 89 | require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_libsodium_legacy.php'; |
82 | 90 | } |
83 | 91 | } |
@@ -85,13 +93,15 @@ discard block |
||
85 | 93 | /** |
86 | 94 | * Reading directly from /dev/urandom: |
87 | 95 | */ |
88 | - if (DIRECTORY_SEPARATOR === '/') { |
|
96 | + if (DIRECTORY_SEPARATOR === '/') |
|
97 | + { |
|
89 | 98 | // DIRECTORY_SEPARATOR === '/' on Unix-like OSes -- this is a fast |
90 | 99 | // way to exclude Windows. |
91 | 100 | $RandomCompatUrandom = true; |
92 | 101 | $RandomCompat_basedir = ini_get('open_basedir'); |
93 | 102 | |
94 | - if (!empty($RandomCompat_basedir)) { |
|
103 | + if (!empty($RandomCompat_basedir)) |
|
104 | + { |
|
95 | 105 | $RandomCompat_open_basedir = explode( |
96 | 106 | PATH_SEPARATOR, |
97 | 107 | strtolower($RandomCompat_basedir) |
@@ -121,7 +131,9 @@ discard block |
||
121 | 131 | } |
122 | 132 | // Unset variables after use |
123 | 133 | $RandomCompat_basedir = null; |
124 | - } else { |
|
134 | + } |
|
135 | + else |
|
136 | + { |
|
125 | 137 | $RandomCompatUrandom = false; |
126 | 138 | } |
127 | 139 | |
@@ -179,14 +191,19 @@ discard block |
||
179 | 191 | strtolower(ini_get('disable_classes')) |
180 | 192 | ); |
181 | 193 | |
182 | - if (!in_array('com', $RandomCompat_disabled_classes)) { |
|
183 | - try { |
|
194 | + if (!in_array('com', $RandomCompat_disabled_classes)) |
|
195 | + { |
|
196 | + try |
|
197 | + { |
|
184 | 198 | $RandomCompatCOMtest = new COM('CAPICOM.Utilities.1'); |
185 | - if (method_exists($RandomCompatCOMtest, 'GetRandom')) { |
|
199 | + if (method_exists($RandomCompatCOMtest, 'GetRandom')) |
|
200 | + { |
|
186 | 201 | // See random_bytes_com_dotnet.php |
187 | 202 | require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_bytes_com_dotnet.php'; |
188 | 203 | } |
189 | - } catch (com_exception $e) { |
|
204 | + } |
|
205 | + catch (com_exception $e) |
|
206 | + { |
|
190 | 207 | // Don't try to use it. |
191 | 208 | } |
192 | 209 | } |
@@ -197,7 +214,8 @@ discard block |
||
197 | 214 | /** |
198 | 215 | * throw new Exception |
199 | 216 | */ |
200 | - if (!is_callable('random_bytes')) { |
|
217 | + if (!is_callable('random_bytes')) |
|
218 | + { |
|
201 | 219 | /** |
202 | 220 | * We don't have any more options, so let's throw an exception right now |
203 | 221 | * and hope the developer won't let it fail silently. |
@@ -218,7 +236,8 @@ discard block |
||
218 | 236 | } |
219 | 237 | } |
220 | 238 | |
221 | -if (!is_callable('random_int')) { |
|
239 | +if (!is_callable('random_int')) |
|
240 | +{ |
|
222 | 241 | require_once $RandomCompatDIR . DIRECTORY_SEPARATOR . 'random_int.php'; |
223 | 242 | } |
224 | 243 |
@@ -26,7 +26,8 @@ discard block |
||
26 | 26 | * SOFTWARE. |
27 | 27 | */ |
28 | 28 | |
29 | -if (!is_callable('RandomCompat_intval')) { |
|
29 | +if (!is_callable('RandomCompat_intval')) |
|
30 | +{ |
|
30 | 31 | |
31 | 32 | /** |
32 | 33 | * Cast to an integer if we can, safely. |
@@ -47,9 +48,12 @@ discard block |
||
47 | 48 | */ |
48 | 49 | function RandomCompat_intval($number, $fail_open = false) |
49 | 50 | { |
50 | - if (is_int($number) || is_float($number)) { |
|
51 | + if (is_int($number) || is_float($number)) |
|
52 | + { |
|
51 | 53 | $number += 0; |
52 | - } elseif (is_numeric($number)) { |
|
54 | + } |
|
55 | + elseif (is_numeric($number)) |
|
56 | + { |
|
53 | 57 | /** @psalm-suppress InvalidOperand */ |
54 | 58 | $number += 0; |
55 | 59 | } |
@@ -65,9 +69,12 @@ discard block |
||
65 | 69 | $number = (int) $number; |
66 | 70 | } |
67 | 71 | |
68 | - if (is_int($number)) { |
|
72 | + if (is_int($number)) |
|
73 | + { |
|
69 | 74 | return (int) $number; |
70 | - } elseif (!$fail_open) { |
|
75 | + } |
|
76 | + elseif (!$fail_open) |
|
77 | + { |
|
71 | 78 | throw new TypeError( |
72 | 79 | 'Expected an integer.' |
73 | 80 | ); |
@@ -28,50 +28,50 @@ |
||
28 | 28 | |
29 | 29 | if (!is_callable('RandomCompat_intval')) { |
30 | 30 | |
31 | - /** |
|
32 | - * Cast to an integer if we can, safely. |
|
33 | - * |
|
34 | - * If you pass it a float in the range (~PHP_INT_MAX, PHP_INT_MAX) |
|
35 | - * (non-inclusive), it will sanely cast it to an int. If you it's equal to |
|
36 | - * ~PHP_INT_MAX or PHP_INT_MAX, we let it fail as not an integer. Floats |
|
37 | - * lose precision, so the <= and => operators might accidentally let a float |
|
38 | - * through. |
|
39 | - * |
|
40 | - * @param int|float $number The number we want to convert to an int |
|
41 | - * @param bool $fail_open Set to true to not throw an exception |
|
42 | - * |
|
43 | - * @return float|int |
|
44 | - * @psalm-suppress InvalidReturnType |
|
45 | - * |
|
46 | - * @throws TypeError |
|
47 | - */ |
|
48 | - function RandomCompat_intval($number, $fail_open = false) |
|
49 | - { |
|
50 | - if (is_int($number) || is_float($number)) { |
|
51 | - $number += 0; |
|
52 | - } elseif (is_numeric($number)) { |
|
53 | - /** @psalm-suppress InvalidOperand */ |
|
54 | - $number += 0; |
|
55 | - } |
|
56 | - /** @var int|float $number */ |
|
31 | + /** |
|
32 | + * Cast to an integer if we can, safely. |
|
33 | + * |
|
34 | + * If you pass it a float in the range (~PHP_INT_MAX, PHP_INT_MAX) |
|
35 | + * (non-inclusive), it will sanely cast it to an int. If you it's equal to |
|
36 | + * ~PHP_INT_MAX or PHP_INT_MAX, we let it fail as not an integer. Floats |
|
37 | + * lose precision, so the <= and => operators might accidentally let a float |
|
38 | + * through. |
|
39 | + * |
|
40 | + * @param int|float $number The number we want to convert to an int |
|
41 | + * @param bool $fail_open Set to true to not throw an exception |
|
42 | + * |
|
43 | + * @return float|int |
|
44 | + * @psalm-suppress InvalidReturnType |
|
45 | + * |
|
46 | + * @throws TypeError |
|
47 | + */ |
|
48 | + function RandomCompat_intval($number, $fail_open = false) |
|
49 | + { |
|
50 | + if (is_int($number) || is_float($number)) { |
|
51 | + $number += 0; |
|
52 | + } elseif (is_numeric($number)) { |
|
53 | + /** @psalm-suppress InvalidOperand */ |
|
54 | + $number += 0; |
|
55 | + } |
|
56 | + /** @var int|float $number */ |
|
57 | 57 | |
58 | - if ( |
|
59 | - is_float($number) |
|
60 | - && |
|
61 | - $number > ~PHP_INT_MAX |
|
62 | - && |
|
63 | - $number < PHP_INT_MAX |
|
64 | - ) { |
|
65 | - $number = (int) $number; |
|
66 | - } |
|
58 | + if ( |
|
59 | + is_float($number) |
|
60 | + && |
|
61 | + $number > ~PHP_INT_MAX |
|
62 | + && |
|
63 | + $number < PHP_INT_MAX |
|
64 | + ) { |
|
65 | + $number = (int) $number; |
|
66 | + } |
|
67 | 67 | |
68 | - if (is_int($number)) { |
|
69 | - return (int) $number; |
|
70 | - } elseif (!$fail_open) { |
|
71 | - throw new TypeError( |
|
72 | - 'Expected an integer.' |
|
73 | - ); |
|
74 | - } |
|
75 | - return $number; |
|
76 | - } |
|
68 | + if (is_int($number)) { |
|
69 | + return (int) $number; |
|
70 | + } elseif (!$fail_open) { |
|
71 | + throw new TypeError( |
|
72 | + 'Expected an integer.' |
|
73 | + ); |
|
74 | + } |
|
75 | + return $number; |
|
76 | + } |
|
77 | 77 | } |
@@ -27,67 +27,67 @@ |
||
27 | 27 | */ |
28 | 28 | |
29 | 29 | if (!is_callable('random_bytes')) { |
30 | - /** |
|
31 | - * If the libsodium PHP extension is loaded, we'll use it above any other |
|
32 | - * solution. |
|
33 | - * |
|
34 | - * libsodium-php project: |
|
35 | - * @ref https://github.com/jedisct1/libsodium-php |
|
36 | - * |
|
37 | - * @param int $bytes |
|
38 | - * |
|
39 | - * @throws Exception |
|
40 | - * |
|
41 | - * @return string |
|
42 | - */ |
|
43 | - function random_bytes($bytes) |
|
44 | - { |
|
45 | - try { |
|
46 | - /** @var int $bytes */ |
|
47 | - $bytes = RandomCompat_intval($bytes); |
|
48 | - } catch (TypeError $ex) { |
|
49 | - throw new TypeError( |
|
50 | - 'random_bytes(): $bytes must be an integer' |
|
51 | - ); |
|
52 | - } |
|
30 | + /** |
|
31 | + * If the libsodium PHP extension is loaded, we'll use it above any other |
|
32 | + * solution. |
|
33 | + * |
|
34 | + * libsodium-php project: |
|
35 | + * @ref https://github.com/jedisct1/libsodium-php |
|
36 | + * |
|
37 | + * @param int $bytes |
|
38 | + * |
|
39 | + * @throws Exception |
|
40 | + * |
|
41 | + * @return string |
|
42 | + */ |
|
43 | + function random_bytes($bytes) |
|
44 | + { |
|
45 | + try { |
|
46 | + /** @var int $bytes */ |
|
47 | + $bytes = RandomCompat_intval($bytes); |
|
48 | + } catch (TypeError $ex) { |
|
49 | + throw new TypeError( |
|
50 | + 'random_bytes(): $bytes must be an integer' |
|
51 | + ); |
|
52 | + } |
|
53 | 53 | |
54 | - if ($bytes < 1) { |
|
55 | - throw new Error( |
|
56 | - 'Length must be greater than 0' |
|
57 | - ); |
|
58 | - } |
|
54 | + if ($bytes < 1) { |
|
55 | + throw new Error( |
|
56 | + 'Length must be greater than 0' |
|
57 | + ); |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * @var string |
|
62 | - */ |
|
63 | - $buf = ''; |
|
60 | + /** |
|
61 | + * @var string |
|
62 | + */ |
|
63 | + $buf = ''; |
|
64 | 64 | |
65 | - /** |
|
66 | - * \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be |
|
67 | - * generated in one invocation. |
|
68 | - */ |
|
69 | - if ($bytes > 2147483647) { |
|
70 | - for ($i = 0; $i < $bytes; $i += 1073741824) { |
|
71 | - $n = ($bytes - $i) > 1073741824 |
|
72 | - ? 1073741824 |
|
73 | - : $bytes - $i; |
|
74 | - $buf .= Sodium::randombytes_buf((int) $n); |
|
75 | - } |
|
76 | - } else { |
|
77 | - $buf .= Sodium::randombytes_buf((int) $bytes); |
|
78 | - } |
|
65 | + /** |
|
66 | + * \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be |
|
67 | + * generated in one invocation. |
|
68 | + */ |
|
69 | + if ($bytes > 2147483647) { |
|
70 | + for ($i = 0; $i < $bytes; $i += 1073741824) { |
|
71 | + $n = ($bytes - $i) > 1073741824 |
|
72 | + ? 1073741824 |
|
73 | + : $bytes - $i; |
|
74 | + $buf .= Sodium::randombytes_buf((int) $n); |
|
75 | + } |
|
76 | + } else { |
|
77 | + $buf .= Sodium::randombytes_buf((int) $bytes); |
|
78 | + } |
|
79 | 79 | |
80 | - if (is_string($buf)) { |
|
81 | - if (RandomCompat_strlen($buf) === $bytes) { |
|
82 | - return $buf; |
|
83 | - } |
|
84 | - } |
|
80 | + if (is_string($buf)) { |
|
81 | + if (RandomCompat_strlen($buf) === $bytes) { |
|
82 | + return $buf; |
|
83 | + } |
|
84 | + } |
|
85 | 85 | |
86 | - /** |
|
87 | - * If we reach here, PHP has failed us. |
|
88 | - */ |
|
89 | - throw new Exception( |
|
90 | - 'Could not gather sufficient random data' |
|
91 | - ); |
|
92 | - } |
|
86 | + /** |
|
87 | + * If we reach here, PHP has failed us. |
|
88 | + */ |
|
89 | + throw new Exception( |
|
90 | + 'Could not gather sufficient random data' |
|
91 | + ); |
|
92 | + } |
|
93 | 93 | } |
@@ -26,7 +26,8 @@ discard block |
||
26 | 26 | * SOFTWARE. |
27 | 27 | */ |
28 | 28 | |
29 | -if (!is_callable('random_bytes')) { |
|
29 | +if (!is_callable('random_bytes')) |
|
30 | +{ |
|
30 | 31 | /** |
31 | 32 | * If the libsodium PHP extension is loaded, we'll use it above any other |
32 | 33 | * solution. |
@@ -42,16 +43,20 @@ discard block |
||
42 | 43 | */ |
43 | 44 | function random_bytes($bytes) |
44 | 45 | { |
45 | - try { |
|
46 | + try |
|
47 | + { |
|
46 | 48 | /** @var int $bytes */ |
47 | 49 | $bytes = RandomCompat_intval($bytes); |
48 | - } catch (TypeError $ex) { |
|
50 | + } |
|
51 | + catch (TypeError $ex) |
|
52 | + { |
|
49 | 53 | throw new TypeError( |
50 | 54 | 'random_bytes(): $bytes must be an integer' |
51 | 55 | ); |
52 | 56 | } |
53 | 57 | |
54 | - if ($bytes < 1) { |
|
58 | + if ($bytes < 1) |
|
59 | + { |
|
55 | 60 | throw new Error( |
56 | 61 | 'Length must be greater than 0' |
57 | 62 | ); |
@@ -66,19 +71,25 @@ discard block |
||
66 | 71 | * \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be |
67 | 72 | * generated in one invocation. |
68 | 73 | */ |
69 | - if ($bytes > 2147483647) { |
|
70 | - for ($i = 0; $i < $bytes; $i += 1073741824) { |
|
74 | + if ($bytes > 2147483647) |
|
75 | + { |
|
76 | + for ($i = 0; $i < $bytes; $i += 1073741824) |
|
77 | + { |
|
71 | 78 | $n = ($bytes - $i) > 1073741824 |
72 | 79 | ? 1073741824 |
73 | 80 | : $bytes - $i; |
74 | 81 | $buf .= Sodium::randombytes_buf((int) $n); |
75 | 82 | } |
76 | - } else { |
|
83 | + } |
|
84 | + else |
|
85 | + { |
|
77 | 86 | $buf .= Sodium::randombytes_buf((int) $bytes); |
78 | 87 | } |
79 | 88 | |
80 | - if (is_string($buf)) { |
|
81 | - if (RandomCompat_strlen($buf) === $bytes) { |
|
89 | + if (is_string($buf)) |
|
90 | + { |
|
91 | + if (RandomCompat_strlen($buf) === $bytes) |
|
92 | + { |
|
82 | 93 | return $buf; |
83 | 94 | } |
84 | 95 | } |
@@ -27,65 +27,65 @@ |
||
27 | 27 | */ |
28 | 28 | |
29 | 29 | if (!is_callable('random_bytes')) { |
30 | - /** |
|
31 | - * If the libsodium PHP extension is loaded, we'll use it above any other |
|
32 | - * solution. |
|
33 | - * |
|
34 | - * libsodium-php project: |
|
35 | - * @ref https://github.com/jedisct1/libsodium-php |
|
36 | - * |
|
37 | - * @param int $bytes |
|
38 | - * |
|
39 | - * @throws Exception |
|
40 | - * |
|
41 | - * @return string |
|
42 | - */ |
|
43 | - function random_bytes($bytes) |
|
44 | - { |
|
45 | - try { |
|
46 | - /** @var int $bytes */ |
|
47 | - $bytes = RandomCompat_intval($bytes); |
|
48 | - } catch (TypeError $ex) { |
|
49 | - throw new TypeError( |
|
50 | - 'random_bytes(): $bytes must be an integer' |
|
51 | - ); |
|
52 | - } |
|
30 | + /** |
|
31 | + * If the libsodium PHP extension is loaded, we'll use it above any other |
|
32 | + * solution. |
|
33 | + * |
|
34 | + * libsodium-php project: |
|
35 | + * @ref https://github.com/jedisct1/libsodium-php |
|
36 | + * |
|
37 | + * @param int $bytes |
|
38 | + * |
|
39 | + * @throws Exception |
|
40 | + * |
|
41 | + * @return string |
|
42 | + */ |
|
43 | + function random_bytes($bytes) |
|
44 | + { |
|
45 | + try { |
|
46 | + /** @var int $bytes */ |
|
47 | + $bytes = RandomCompat_intval($bytes); |
|
48 | + } catch (TypeError $ex) { |
|
49 | + throw new TypeError( |
|
50 | + 'random_bytes(): $bytes must be an integer' |
|
51 | + ); |
|
52 | + } |
|
53 | 53 | |
54 | - if ($bytes < 1) { |
|
55 | - throw new Error( |
|
56 | - 'Length must be greater than 0' |
|
57 | - ); |
|
58 | - } |
|
54 | + if ($bytes < 1) { |
|
55 | + throw new Error( |
|
56 | + 'Length must be greater than 0' |
|
57 | + ); |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be |
|
62 | - * generated in one invocation. |
|
63 | - */ |
|
64 | - /** @var string|bool $buf */ |
|
65 | - if ($bytes > 2147483647) { |
|
66 | - $buf = ''; |
|
67 | - for ($i = 0; $i < $bytes; $i += 1073741824) { |
|
68 | - $n = ($bytes - $i) > 1073741824 |
|
69 | - ? 1073741824 |
|
70 | - : $bytes - $i; |
|
71 | - $buf .= \Sodium\randombytes_buf($n); |
|
72 | - } |
|
73 | - } else { |
|
74 | - /** @var string|bool $buf */ |
|
75 | - $buf = \Sodium\randombytes_buf($bytes); |
|
76 | - } |
|
60 | + /** |
|
61 | + * \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be |
|
62 | + * generated in one invocation. |
|
63 | + */ |
|
64 | + /** @var string|bool $buf */ |
|
65 | + if ($bytes > 2147483647) { |
|
66 | + $buf = ''; |
|
67 | + for ($i = 0; $i < $bytes; $i += 1073741824) { |
|
68 | + $n = ($bytes - $i) > 1073741824 |
|
69 | + ? 1073741824 |
|
70 | + : $bytes - $i; |
|
71 | + $buf .= \Sodium\randombytes_buf($n); |
|
72 | + } |
|
73 | + } else { |
|
74 | + /** @var string|bool $buf */ |
|
75 | + $buf = \Sodium\randombytes_buf($bytes); |
|
76 | + } |
|
77 | 77 | |
78 | - if (is_string($buf)) { |
|
79 | - if (RandomCompat_strlen($buf) === $bytes) { |
|
80 | - return $buf; |
|
81 | - } |
|
82 | - } |
|
78 | + if (is_string($buf)) { |
|
79 | + if (RandomCompat_strlen($buf) === $bytes) { |
|
80 | + return $buf; |
|
81 | + } |
|
82 | + } |
|
83 | 83 | |
84 | - /** |
|
85 | - * If we reach here, PHP has failed us. |
|
86 | - */ |
|
87 | - throw new Exception( |
|
88 | - 'Could not gather sufficient random data' |
|
89 | - ); |
|
90 | - } |
|
84 | + /** |
|
85 | + * If we reach here, PHP has failed us. |
|
86 | + */ |
|
87 | + throw new Exception( |
|
88 | + 'Could not gather sufficient random data' |
|
89 | + ); |
|
90 | + } |
|
91 | 91 | } |
@@ -26,7 +26,8 @@ discard block |
||
26 | 26 | * SOFTWARE. |
27 | 27 | */ |
28 | 28 | |
29 | -if (!is_callable('random_bytes')) { |
|
29 | +if (!is_callable('random_bytes')) |
|
30 | +{ |
|
30 | 31 | /** |
31 | 32 | * If the libsodium PHP extension is loaded, we'll use it above any other |
32 | 33 | * solution. |
@@ -42,16 +43,20 @@ discard block |
||
42 | 43 | */ |
43 | 44 | function random_bytes($bytes) |
44 | 45 | { |
45 | - try { |
|
46 | + try |
|
47 | + { |
|
46 | 48 | /** @var int $bytes */ |
47 | 49 | $bytes = RandomCompat_intval($bytes); |
48 | - } catch (TypeError $ex) { |
|
50 | + } |
|
51 | + catch (TypeError $ex) |
|
52 | + { |
|
49 | 53 | throw new TypeError( |
50 | 54 | 'random_bytes(): $bytes must be an integer' |
51 | 55 | ); |
52 | 56 | } |
53 | 57 | |
54 | - if ($bytes < 1) { |
|
58 | + if ($bytes < 1) |
|
59 | + { |
|
55 | 60 | throw new Error( |
56 | 61 | 'Length must be greater than 0' |
57 | 62 | ); |
@@ -62,21 +67,27 @@ discard block |
||
62 | 67 | * generated in one invocation. |
63 | 68 | */ |
64 | 69 | /** @var string|bool $buf */ |
65 | - if ($bytes > 2147483647) { |
|
70 | + if ($bytes > 2147483647) |
|
71 | + { |
|
66 | 72 | $buf = ''; |
67 | - for ($i = 0; $i < $bytes; $i += 1073741824) { |
|
73 | + for ($i = 0; $i < $bytes; $i += 1073741824) |
|
74 | + { |
|
68 | 75 | $n = ($bytes - $i) > 1073741824 |
69 | 76 | ? 1073741824 |
70 | 77 | : $bytes - $i; |
71 | 78 | $buf .= \Sodium\randombytes_buf($n); |
72 | 79 | } |
73 | - } else { |
|
80 | + } |
|
81 | + else |
|
82 | + { |
|
74 | 83 | /** @var string|bool $buf */ |
75 | 84 | $buf = \Sodium\randombytes_buf($bytes); |
76 | 85 | } |
77 | 86 | |
78 | - if (is_string($buf)) { |
|
79 | - if (RandomCompat_strlen($buf) === $bytes) { |
|
87 | + if (is_string($buf)) |
|
88 | + { |
|
89 | + if (RandomCompat_strlen($buf) === $bytes) |
|
90 | + { |
|
80 | 91 | return $buf; |
81 | 92 | } |
82 | 93 | } |
@@ -738,7 +738,7 @@ |
||
738 | 738 | ); |
739 | 739 | else |
740 | 740 | $context['allowed_actions'] = array( |
741 | - 'ok' => $txt['admin_browse_w_approve'] .' '. $txt['admin_browse_no_email'], |
|
741 | + 'ok' => $txt['admin_browse_w_approve'] . ' ' . $txt['admin_browse_no_email'], |
|
742 | 742 | 'okemail' => $txt['admin_browse_w_approve'] . ' ' . $txt['admin_browse_w_email'], |
743 | 743 | 'require_activation' => $txt['admin_browse_w_approve_require_activate'], |
744 | 744 | 'reject' => $txt['admin_browse_w_reject'], |
@@ -742,7 +742,7 @@ |
||
742 | 742 | |
743 | 743 | // Filter out any redundant separators before we start the loop |
744 | 744 | $context['config_vars'] = array_filter($context['config_vars'], function ($v) use ($context) |
745 | - { |
|
745 | + { |
|
746 | 746 | static $config_vars, $prev; |
747 | 747 | |
748 | 748 | $at_start = is_null($config_vars); |
@@ -756,7 +756,7 @@ |
||
756 | 756 | } |
757 | 757 | |
758 | 758 | // Filter out any redundant separators before we start the loop |
759 | - $context['config_vars'] = array_filter($context['config_vars'], function ($v) use ($context) |
|
759 | + $context['config_vars'] = array_filter($context['config_vars'], function($v) use ($context) |
|
760 | 760 | { |
761 | 761 | static $config_vars, $prev; |
762 | 762 |
@@ -1965,7 +1965,7 @@ |
||
1965 | 1965 | // Remove anything that isn't actually new from our list of files |
1966 | 1966 | foreach ($to_unset as $key => $ids) |
1967 | 1967 | { |
1968 | - if (array_reduce($ids, function ($carry, $item) { return $carry * $item; }, true) == true) |
|
1968 | + if (array_reduce($ids, function($carry, $item) { return $carry * $item; }, true) == true) |
|
1969 | 1969 | unset($smiley_files[$key]); |
1970 | 1970 | } |
1971 | 1971 |
@@ -1965,7 +1965,9 @@ |
||
1965 | 1965 | // Remove anything that isn't actually new from our list of files |
1966 | 1966 | foreach ($to_unset as $key => $ids) |
1967 | 1967 | { |
1968 | - if (array_reduce($ids, function ($carry, $item) { return $carry * $item; }, true) == true) |
|
1968 | + if (array_reduce($ids, function ($carry, $item) |
|
1969 | + { |
|
1970 | +return $carry * $item; }, true) == true) |
|
1969 | 1971 | unset($smiley_files[$key]); |
1970 | 1972 | } |
1971 | 1973 |
@@ -1254,7 +1254,6 @@ |
||
1254 | 1254 | |
1255 | 1255 | return array($charset, $string, 'base64'); |
1256 | 1256 | } |
1257 | - |
|
1258 | 1257 | else |
1259 | 1258 | return array($charset, $string, '7bit'); |
1260 | 1259 | } |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | $to = explode('/', $lang_dir); |
502 | 502 | $relPath = $to; |
503 | 503 | |
504 | - foreach($from as $depth => $dir) |
|
504 | + foreach ($from as $depth => $dir) |
|
505 | 505 | { |
506 | 506 | if ($dir === $to[$depth]) |
507 | 507 | array_shift($relPath); |
@@ -2881,94 +2881,94 @@ discard block |
||
2881 | 2881 | // Translation table for the character sets not native for MySQL. |
2882 | 2882 | $translation_tables = array( |
2883 | 2883 | 'windows-1255' => array( |
2884 | - '0x81' => '\'\'', '0x8A' => '\'\'', '0x8C' => '\'\'', |
|
2885 | - '0x8D' => '\'\'', '0x8E' => '\'\'', '0x8F' => '\'\'', |
|
2886 | - '0x90' => '\'\'', '0x9A' => '\'\'', '0x9C' => '\'\'', |
|
2887 | - '0x9D' => '\'\'', '0x9E' => '\'\'', '0x9F' => '\'\'', |
|
2888 | - '0xCA' => '\'\'', '0xD9' => '\'\'', '0xDA' => '\'\'', |
|
2889 | - '0xDB' => '\'\'', '0xDC' => '\'\'', '0xDD' => '\'\'', |
|
2890 | - '0xDE' => '\'\'', '0xDF' => '\'\'', '0xFB' => '0xD792', |
|
2891 | - '0xFC' => '0xE282AC', '0xFF' => '0xD6B2', '0xC2' => '0xFF', |
|
2892 | - '0x80' => '0xFC', '0xE2' => '0xFB', '0xA0' => '0xC2A0', |
|
2893 | - '0xA1' => '0xC2A1', '0xA2' => '0xC2A2', '0xA3' => '0xC2A3', |
|
2894 | - '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
2895 | - '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
2896 | - '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
2897 | - '0xAF' => '0xC2AF', '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', |
|
2898 | - '0xB2' => '0xC2B2', '0xB3' => '0xC2B3', '0xB4' => '0xC2B4', |
|
2899 | - '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
2900 | - '0xB8' => '0xC2B8', '0xB9' => '0xC2B9', '0xBB' => '0xC2BB', |
|
2901 | - '0xBC' => '0xC2BC', '0xBD' => '0xC2BD', '0xBE' => '0xC2BE', |
|
2902 | - '0xBF' => '0xC2BF', '0xD7' => '0xD7B3', '0xD1' => '0xD781', |
|
2903 | - '0xD4' => '0xD7B0', '0xD5' => '0xD7B1', '0xD6' => '0xD7B2', |
|
2904 | - '0xE0' => '0xD790', '0xEA' => '0xD79A', '0xEC' => '0xD79C', |
|
2905 | - '0xED' => '0xD79D', '0xEE' => '0xD79E', '0xEF' => '0xD79F', |
|
2906 | - '0xF0' => '0xD7A0', '0xF1' => '0xD7A1', '0xF2' => '0xD7A2', |
|
2907 | - '0xF3' => '0xD7A3', '0xF5' => '0xD7A5', '0xF6' => '0xD7A6', |
|
2908 | - '0xF7' => '0xD7A7', '0xF8' => '0xD7A8', '0xF9' => '0xD7A9', |
|
2909 | - '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
2910 | - '0x86' => '0xE280A0', '0x87' => '0xE280A1', '0x89' => '0xE280B0', |
|
2911 | - '0x8B' => '0xE280B9', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
2912 | - '0x95' => '0xE280A2', '0x97' => '0xE28094', '0x99' => '0xE284A2', |
|
2913 | - '0xC0' => '0xD6B0', '0xC1' => '0xD6B1', '0xC3' => '0xD6B3', |
|
2914 | - '0xC4' => '0xD6B4', '0xC5' => '0xD6B5', '0xC6' => '0xD6B6', |
|
2915 | - '0xC7' => '0xD6B7', '0xC8' => '0xD6B8', '0xC9' => '0xD6B9', |
|
2916 | - '0xCB' => '0xD6BB', '0xCC' => '0xD6BC', '0xCD' => '0xD6BD', |
|
2917 | - '0xCE' => '0xD6BE', '0xCF' => '0xD6BF', '0xD0' => '0xD780', |
|
2918 | - '0xD2' => '0xD782', '0xE3' => '0xD793', '0xE4' => '0xD794', |
|
2919 | - '0xE5' => '0xD795', '0xE7' => '0xD797', '0xE9' => '0xD799', |
|
2920 | - '0xFD' => '0xE2808E', '0xFE' => '0xE2808F', '0x92' => '0xE28099', |
|
2921 | - '0x83' => '0xC692', '0xD3' => '0xD783', '0x88' => '0xCB86', |
|
2922 | - '0x98' => '0xCB9C', '0x91' => '0xE28098', '0x96' => '0xE28093', |
|
2923 | - '0xBA' => '0xC3B7', '0x9B' => '0xE280BA', '0xAA' => '0xC397', |
|
2924 | - '0xA4' => '0xE282AA', '0xE1' => '0xD791', '0xE6' => '0xD796', |
|
2925 | - '0xE8' => '0xD798', '0xEB' => '0xD79B', '0xF4' => '0xD7A4', |
|
2884 | + '0x81' => '\'\'', '0x8A' => '\'\'', '0x8C' => '\'\'', |
|
2885 | + '0x8D' => '\'\'', '0x8E' => '\'\'', '0x8F' => '\'\'', |
|
2886 | + '0x90' => '\'\'', '0x9A' => '\'\'', '0x9C' => '\'\'', |
|
2887 | + '0x9D' => '\'\'', '0x9E' => '\'\'', '0x9F' => '\'\'', |
|
2888 | + '0xCA' => '\'\'', '0xD9' => '\'\'', '0xDA' => '\'\'', |
|
2889 | + '0xDB' => '\'\'', '0xDC' => '\'\'', '0xDD' => '\'\'', |
|
2890 | + '0xDE' => '\'\'', '0xDF' => '\'\'', '0xFB' => '0xD792', |
|
2891 | + '0xFC' => '0xE282AC', '0xFF' => '0xD6B2', '0xC2' => '0xFF', |
|
2892 | + '0x80' => '0xFC', '0xE2' => '0xFB', '0xA0' => '0xC2A0', |
|
2893 | + '0xA1' => '0xC2A1', '0xA2' => '0xC2A2', '0xA3' => '0xC2A3', |
|
2894 | + '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
2895 | + '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
2896 | + '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
2897 | + '0xAF' => '0xC2AF', '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', |
|
2898 | + '0xB2' => '0xC2B2', '0xB3' => '0xC2B3', '0xB4' => '0xC2B4', |
|
2899 | + '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
2900 | + '0xB8' => '0xC2B8', '0xB9' => '0xC2B9', '0xBB' => '0xC2BB', |
|
2901 | + '0xBC' => '0xC2BC', '0xBD' => '0xC2BD', '0xBE' => '0xC2BE', |
|
2902 | + '0xBF' => '0xC2BF', '0xD7' => '0xD7B3', '0xD1' => '0xD781', |
|
2903 | + '0xD4' => '0xD7B0', '0xD5' => '0xD7B1', '0xD6' => '0xD7B2', |
|
2904 | + '0xE0' => '0xD790', '0xEA' => '0xD79A', '0xEC' => '0xD79C', |
|
2905 | + '0xED' => '0xD79D', '0xEE' => '0xD79E', '0xEF' => '0xD79F', |
|
2906 | + '0xF0' => '0xD7A0', '0xF1' => '0xD7A1', '0xF2' => '0xD7A2', |
|
2907 | + '0xF3' => '0xD7A3', '0xF5' => '0xD7A5', '0xF6' => '0xD7A6', |
|
2908 | + '0xF7' => '0xD7A7', '0xF8' => '0xD7A8', '0xF9' => '0xD7A9', |
|
2909 | + '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
2910 | + '0x86' => '0xE280A0', '0x87' => '0xE280A1', '0x89' => '0xE280B0', |
|
2911 | + '0x8B' => '0xE280B9', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
2912 | + '0x95' => '0xE280A2', '0x97' => '0xE28094', '0x99' => '0xE284A2', |
|
2913 | + '0xC0' => '0xD6B0', '0xC1' => '0xD6B1', '0xC3' => '0xD6B3', |
|
2914 | + '0xC4' => '0xD6B4', '0xC5' => '0xD6B5', '0xC6' => '0xD6B6', |
|
2915 | + '0xC7' => '0xD6B7', '0xC8' => '0xD6B8', '0xC9' => '0xD6B9', |
|
2916 | + '0xCB' => '0xD6BB', '0xCC' => '0xD6BC', '0xCD' => '0xD6BD', |
|
2917 | + '0xCE' => '0xD6BE', '0xCF' => '0xD6BF', '0xD0' => '0xD780', |
|
2918 | + '0xD2' => '0xD782', '0xE3' => '0xD793', '0xE4' => '0xD794', |
|
2919 | + '0xE5' => '0xD795', '0xE7' => '0xD797', '0xE9' => '0xD799', |
|
2920 | + '0xFD' => '0xE2808E', '0xFE' => '0xE2808F', '0x92' => '0xE28099', |
|
2921 | + '0x83' => '0xC692', '0xD3' => '0xD783', '0x88' => '0xCB86', |
|
2922 | + '0x98' => '0xCB9C', '0x91' => '0xE28098', '0x96' => '0xE28093', |
|
2923 | + '0xBA' => '0xC3B7', '0x9B' => '0xE280BA', '0xAA' => '0xC397', |
|
2924 | + '0xA4' => '0xE282AA', '0xE1' => '0xD791', '0xE6' => '0xD796', |
|
2925 | + '0xE8' => '0xD798', '0xEB' => '0xD79B', '0xF4' => '0xD7A4', |
|
2926 | 2926 | '0xFA' => '0xD7AA', |
2927 | 2927 | ), |
2928 | 2928 | 'windows-1253' => array( |
2929 | - '0x81' => '\'\'', '0x88' => '\'\'', '0x8A' => '\'\'', |
|
2930 | - '0x8C' => '\'\'', '0x8D' => '\'\'', '0x8E' => '\'\'', |
|
2931 | - '0x8F' => '\'\'', '0x90' => '\'\'', '0x98' => '\'\'', |
|
2932 | - '0x9A' => '\'\'', '0x9C' => '\'\'', '0x9D' => '\'\'', |
|
2933 | - '0x9E' => '\'\'', '0x9F' => '\'\'', '0xAA' => '\'\'', |
|
2934 | - '0xD2' => '0xE282AC', '0xFF' => '0xCE92', '0xCE' => '0xCE9E', |
|
2935 | - '0xB8' => '0xCE88', '0xBA' => '0xCE8A', '0xBC' => '0xCE8C', |
|
2936 | - '0xBE' => '0xCE8E', '0xBF' => '0xCE8F', '0xC0' => '0xCE90', |
|
2937 | - '0xC8' => '0xCE98', '0xCA' => '0xCE9A', '0xCC' => '0xCE9C', |
|
2938 | - '0xCD' => '0xCE9D', '0xCF' => '0xCE9F', '0xDA' => '0xCEAA', |
|
2939 | - '0xE8' => '0xCEB8', '0xEA' => '0xCEBA', '0xEC' => '0xCEBC', |
|
2940 | - '0xEE' => '0xCEBE', '0xEF' => '0xCEBF', '0xC2' => '0xFF', |
|
2941 | - '0xBD' => '0xC2BD', '0xED' => '0xCEBD', '0xB2' => '0xC2B2', |
|
2942 | - '0xA0' => '0xC2A0', '0xA3' => '0xC2A3', '0xA4' => '0xC2A4', |
|
2943 | - '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
2944 | - '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
2945 | - '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
2946 | - '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', '0xB3' => '0xC2B3', |
|
2947 | - '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
2948 | - '0xBB' => '0xC2BB', '0xE2' => '0xCEB2', '0x80' => '0xD2', |
|
2949 | - '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
2950 | - '0x86' => '0xE280A0', '0xA1' => '0xCE85', '0xA2' => '0xCE86', |
|
2951 | - '0x87' => '0xE280A1', '0x89' => '0xE280B0', '0xB9' => '0xCE89', |
|
2952 | - '0x8B' => '0xE280B9', '0x91' => '0xE28098', '0x99' => '0xE284A2', |
|
2953 | - '0x92' => '0xE28099', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
2954 | - '0x95' => '0xE280A2', '0x96' => '0xE28093', '0x97' => '0xE28094', |
|
2955 | - '0x9B' => '0xE280BA', '0xAF' => '0xE28095', '0xB4' => '0xCE84', |
|
2956 | - '0xC1' => '0xCE91', '0xC3' => '0xCE93', '0xC4' => '0xCE94', |
|
2957 | - '0xC5' => '0xCE95', '0xC6' => '0xCE96', '0x83' => '0xC692', |
|
2958 | - '0xC7' => '0xCE97', '0xC9' => '0xCE99', '0xCB' => '0xCE9B', |
|
2959 | - '0xD0' => '0xCEA0', '0xD1' => '0xCEA1', '0xD3' => '0xCEA3', |
|
2960 | - '0xD4' => '0xCEA4', '0xD5' => '0xCEA5', '0xD6' => '0xCEA6', |
|
2961 | - '0xD7' => '0xCEA7', '0xD8' => '0xCEA8', '0xD9' => '0xCEA9', |
|
2962 | - '0xDB' => '0xCEAB', '0xDC' => '0xCEAC', '0xDD' => '0xCEAD', |
|
2963 | - '0xDE' => '0xCEAE', '0xDF' => '0xCEAF', '0xE0' => '0xCEB0', |
|
2964 | - '0xE1' => '0xCEB1', '0xE3' => '0xCEB3', '0xE4' => '0xCEB4', |
|
2965 | - '0xE5' => '0xCEB5', '0xE6' => '0xCEB6', '0xE7' => '0xCEB7', |
|
2966 | - '0xE9' => '0xCEB9', '0xEB' => '0xCEBB', '0xF0' => '0xCF80', |
|
2967 | - '0xF1' => '0xCF81', '0xF2' => '0xCF82', '0xF3' => '0xCF83', |
|
2968 | - '0xF4' => '0xCF84', '0xF5' => '0xCF85', '0xF6' => '0xCF86', |
|
2969 | - '0xF7' => '0xCF87', '0xF8' => '0xCF88', '0xF9' => '0xCF89', |
|
2970 | - '0xFA' => '0xCF8A', '0xFB' => '0xCF8B', '0xFC' => '0xCF8C', |
|
2971 | - '0xFD' => '0xCF8D', '0xFE' => '0xCF8E', |
|
2929 | + '0x81' => '\'\'', '0x88' => '\'\'', '0x8A' => '\'\'', |
|
2930 | + '0x8C' => '\'\'', '0x8D' => '\'\'', '0x8E' => '\'\'', |
|
2931 | + '0x8F' => '\'\'', '0x90' => '\'\'', '0x98' => '\'\'', |
|
2932 | + '0x9A' => '\'\'', '0x9C' => '\'\'', '0x9D' => '\'\'', |
|
2933 | + '0x9E' => '\'\'', '0x9F' => '\'\'', '0xAA' => '\'\'', |
|
2934 | + '0xD2' => '0xE282AC', '0xFF' => '0xCE92', '0xCE' => '0xCE9E', |
|
2935 | + '0xB8' => '0xCE88', '0xBA' => '0xCE8A', '0xBC' => '0xCE8C', |
|
2936 | + '0xBE' => '0xCE8E', '0xBF' => '0xCE8F', '0xC0' => '0xCE90', |
|
2937 | + '0xC8' => '0xCE98', '0xCA' => '0xCE9A', '0xCC' => '0xCE9C', |
|
2938 | + '0xCD' => '0xCE9D', '0xCF' => '0xCE9F', '0xDA' => '0xCEAA', |
|
2939 | + '0xE8' => '0xCEB8', '0xEA' => '0xCEBA', '0xEC' => '0xCEBC', |
|
2940 | + '0xEE' => '0xCEBE', '0xEF' => '0xCEBF', '0xC2' => '0xFF', |
|
2941 | + '0xBD' => '0xC2BD', '0xED' => '0xCEBD', '0xB2' => '0xC2B2', |
|
2942 | + '0xA0' => '0xC2A0', '0xA3' => '0xC2A3', '0xA4' => '0xC2A4', |
|
2943 | + '0xA5' => '0xC2A5', '0xA6' => '0xC2A6', '0xA7' => '0xC2A7', |
|
2944 | + '0xA8' => '0xC2A8', '0xA9' => '0xC2A9', '0xAB' => '0xC2AB', |
|
2945 | + '0xAC' => '0xC2AC', '0xAD' => '0xC2AD', '0xAE' => '0xC2AE', |
|
2946 | + '0xB0' => '0xC2B0', '0xB1' => '0xC2B1', '0xB3' => '0xC2B3', |
|
2947 | + '0xB5' => '0xC2B5', '0xB6' => '0xC2B6', '0xB7' => '0xC2B7', |
|
2948 | + '0xBB' => '0xC2BB', '0xE2' => '0xCEB2', '0x80' => '0xD2', |
|
2949 | + '0x82' => '0xE2809A', '0x84' => '0xE2809E', '0x85' => '0xE280A6', |
|
2950 | + '0x86' => '0xE280A0', '0xA1' => '0xCE85', '0xA2' => '0xCE86', |
|
2951 | + '0x87' => '0xE280A1', '0x89' => '0xE280B0', '0xB9' => '0xCE89', |
|
2952 | + '0x8B' => '0xE280B9', '0x91' => '0xE28098', '0x99' => '0xE284A2', |
|
2953 | + '0x92' => '0xE28099', '0x93' => '0xE2809C', '0x94' => '0xE2809D', |
|
2954 | + '0x95' => '0xE280A2', '0x96' => '0xE28093', '0x97' => '0xE28094', |
|
2955 | + '0x9B' => '0xE280BA', '0xAF' => '0xE28095', '0xB4' => '0xCE84', |
|
2956 | + '0xC1' => '0xCE91', '0xC3' => '0xCE93', '0xC4' => '0xCE94', |
|
2957 | + '0xC5' => '0xCE95', '0xC6' => '0xCE96', '0x83' => '0xC692', |
|
2958 | + '0xC7' => '0xCE97', '0xC9' => '0xCE99', '0xCB' => '0xCE9B', |
|
2959 | + '0xD0' => '0xCEA0', '0xD1' => '0xCEA1', '0xD3' => '0xCEA3', |
|
2960 | + '0xD4' => '0xCEA4', '0xD5' => '0xCEA5', '0xD6' => '0xCEA6', |
|
2961 | + '0xD7' => '0xCEA7', '0xD8' => '0xCEA8', '0xD9' => '0xCEA9', |
|
2962 | + '0xDB' => '0xCEAB', '0xDC' => '0xCEAC', '0xDD' => '0xCEAD', |
|
2963 | + '0xDE' => '0xCEAE', '0xDF' => '0xCEAF', '0xE0' => '0xCEB0', |
|
2964 | + '0xE1' => '0xCEB1', '0xE3' => '0xCEB3', '0xE4' => '0xCEB4', |
|
2965 | + '0xE5' => '0xCEB5', '0xE6' => '0xCEB6', '0xE7' => '0xCEB7', |
|
2966 | + '0xE9' => '0xCEB9', '0xEB' => '0xCEBB', '0xF0' => '0xCF80', |
|
2967 | + '0xF1' => '0xCF81', '0xF2' => '0xCF82', '0xF3' => '0xCF83', |
|
2968 | + '0xF4' => '0xCF84', '0xF5' => '0xCF85', '0xF6' => '0xCF86', |
|
2969 | + '0xF7' => '0xCF87', '0xF8' => '0xCF88', '0xF9' => '0xCF89', |
|
2970 | + '0xFA' => '0xCF8A', '0xFB' => '0xCF8B', '0xFC' => '0xCF8C', |
|
2971 | + '0xFD' => '0xCF8D', '0xFE' => '0xCF8E', |
|
2972 | 2972 | ), |
2973 | 2973 | ); |
2974 | 2974 | |
@@ -3205,7 +3205,7 @@ discard block |
||
3205 | 3205 | return $string; |
3206 | 3206 | |
3207 | 3207 | // This bit fixes incorrect string lengths, which can happen if the character encoding was changed (e.g. conversion to UTF-8) |
3208 | - $new_string = preg_replace_callback('~\bs:(\d+):"(.*?)";(?=$|[bidsa]:|[{}]|N;)~s', function ($matches) {return 's:' . strlen($matches[2]) . ':"' . $matches[2] . '";';}, $string); |
|
3208 | + $new_string = preg_replace_callback('~\bs:(\d+):"(.*?)";(?=$|[bidsa]:|[{}]|N;)~s', function($matches) {return 's:' . strlen($matches[2]) . ':"' . $matches[2] . '";'; }, $string); |
|
3209 | 3209 | |
3210 | 3210 | // @todo Add more possible fixes here. For example, fix incorrect array lengths, try to handle truncated strings gracefully, etc. |
3211 | 3211 |
@@ -3205,7 +3205,9 @@ |
||
3205 | 3205 | return $string; |
3206 | 3206 | |
3207 | 3207 | // This bit fixes incorrect string lengths, which can happen if the character encoding was changed (e.g. conversion to UTF-8) |
3208 | - $new_string = preg_replace_callback('~\bs:(\d+):"(.*?)";(?=$|[bidsa]:|[{}]|N;)~s', function ($matches) {return 's:' . strlen($matches[2]) . ':"' . $matches[2] . '";';}, $string); |
|
3208 | + $new_string = preg_replace_callback('~\bs:(\d+):"(.*?)";(?=$|[bidsa]:|[{}]|N;)~s', function ($matches) |
|
3209 | + { |
|
3210 | +return 's:' . strlen($matches[2]) . ':"' . $matches[2] . '";';}, $string); |
|
3209 | 3211 | |
3210 | 3212 | // @todo Add more possible fixes here. For example, fix incorrect array lengths, try to handle truncated strings gracefully, etc. |
3211 | 3213 |