@@ -14,12 +14,12 @@ discard block |
||
14 | 14 | */ |
15 | 15 | function openssl_cipher_iv_length(string $method): int |
16 | 16 | { |
17 | - error_clear_last(); |
|
18 | - $result = \openssl_cipher_iv_length($method); |
|
19 | - if ($result === false) { |
|
20 | - throw OpensslException::createFromPhpError(); |
|
21 | - } |
|
22 | - return $result; |
|
17 | + error_clear_last(); |
|
18 | + $result = \openssl_cipher_iv_length($method); |
|
19 | + if ($result === false) { |
|
20 | + throw OpensslException::createFromPhpError(); |
|
21 | + } |
|
22 | + return $result; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | |
@@ -40,11 +40,11 @@ discard block |
||
40 | 40 | */ |
41 | 41 | function openssl_csr_export_to_file($csr, string $outfilename, bool $notext = true): void |
42 | 42 | { |
43 | - error_clear_last(); |
|
44 | - $result = \openssl_csr_export_to_file($csr, $outfilename, $notext); |
|
45 | - if ($result === false) { |
|
46 | - throw OpensslException::createFromPhpError(); |
|
47 | - } |
|
43 | + error_clear_last(); |
|
44 | + $result = \openssl_csr_export_to_file($csr, $outfilename, $notext); |
|
45 | + if ($result === false) { |
|
46 | + throw OpensslException::createFromPhpError(); |
|
47 | + } |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | |
@@ -66,11 +66,11 @@ discard block |
||
66 | 66 | */ |
67 | 67 | function openssl_csr_export($csr, ?string &$out, bool $notext = true): void |
68 | 68 | { |
69 | - error_clear_last(); |
|
70 | - $result = \openssl_csr_export($csr, $out, $notext); |
|
71 | - if ($result === false) { |
|
72 | - throw OpensslException::createFromPhpError(); |
|
73 | - } |
|
69 | + error_clear_last(); |
|
70 | + $result = \openssl_csr_export($csr, $out, $notext); |
|
71 | + if ($result === false) { |
|
72 | + throw OpensslException::createFromPhpError(); |
|
73 | + } |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | |
@@ -90,12 +90,12 @@ discard block |
||
90 | 90 | */ |
91 | 91 | function openssl_csr_get_subject($csr, bool $use_shortnames = true): array |
92 | 92 | { |
93 | - error_clear_last(); |
|
94 | - $result = \openssl_csr_get_subject($csr, $use_shortnames); |
|
95 | - if ($result === false) { |
|
96 | - throw OpensslException::createFromPhpError(); |
|
97 | - } |
|
98 | - return $result; |
|
93 | + error_clear_last(); |
|
94 | + $result = \openssl_csr_get_subject($csr, $use_shortnames); |
|
95 | + if ($result === false) { |
|
96 | + throw OpensslException::createFromPhpError(); |
|
97 | + } |
|
98 | + return $result; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | |
@@ -211,18 +211,18 @@ discard block |
||
211 | 211 | */ |
212 | 212 | function openssl_csr_new(array $dn, &$privkey, array $configargs = null, array $extraattribs = null) |
213 | 213 | { |
214 | - error_clear_last(); |
|
215 | - if ($extraattribs !== null) { |
|
216 | - $result = \openssl_csr_new($dn, $privkey, $configargs, $extraattribs); |
|
217 | - } elseif ($configargs !== null) { |
|
218 | - $result = \openssl_csr_new($dn, $privkey, $configargs); |
|
219 | - } else { |
|
220 | - $result = \openssl_csr_new($dn, $privkey); |
|
221 | - } |
|
222 | - if ($result === false) { |
|
223 | - throw OpensslException::createFromPhpError(); |
|
224 | - } |
|
225 | - return $result; |
|
214 | + error_clear_last(); |
|
215 | + if ($extraattribs !== null) { |
|
216 | + $result = \openssl_csr_new($dn, $privkey, $configargs, $extraattribs); |
|
217 | + } elseif ($configargs !== null) { |
|
218 | + $result = \openssl_csr_new($dn, $privkey, $configargs); |
|
219 | + } else { |
|
220 | + $result = \openssl_csr_new($dn, $privkey); |
|
221 | + } |
|
222 | + if ($result === false) { |
|
223 | + throw OpensslException::createFromPhpError(); |
|
224 | + } |
|
225 | + return $result; |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | |
@@ -252,18 +252,18 @@ discard block |
||
252 | 252 | */ |
253 | 253 | function openssl_csr_sign($csr, $cacert, $priv_key, int $days, array $configargs = null, int $serial = 0) |
254 | 254 | { |
255 | - error_clear_last(); |
|
256 | - if ($serial !== 0) { |
|
257 | - $result = \openssl_csr_sign($csr, $cacert, $priv_key, $days, $configargs, $serial); |
|
258 | - } elseif ($configargs !== null) { |
|
259 | - $result = \openssl_csr_sign($csr, $cacert, $priv_key, $days, $configargs); |
|
260 | - } else { |
|
261 | - $result = \openssl_csr_sign($csr, $cacert, $priv_key, $days); |
|
262 | - } |
|
263 | - if ($result === false) { |
|
264 | - throw OpensslException::createFromPhpError(); |
|
265 | - } |
|
266 | - return $result; |
|
255 | + error_clear_last(); |
|
256 | + if ($serial !== 0) { |
|
257 | + $result = \openssl_csr_sign($csr, $cacert, $priv_key, $days, $configargs, $serial); |
|
258 | + } elseif ($configargs !== null) { |
|
259 | + $result = \openssl_csr_sign($csr, $cacert, $priv_key, $days, $configargs); |
|
260 | + } else { |
|
261 | + $result = \openssl_csr_sign($csr, $cacert, $priv_key, $days); |
|
262 | + } |
|
263 | + if ($result === false) { |
|
264 | + throw OpensslException::createFromPhpError(); |
|
265 | + } |
|
266 | + return $result; |
|
267 | 267 | } |
268 | 268 | |
269 | 269 | |
@@ -286,12 +286,12 @@ discard block |
||
286 | 286 | */ |
287 | 287 | function openssl_decrypt(string $data, string $method, string $key, int $options = 0, string $iv = "", string $tag = "", string $aad = ""): string |
288 | 288 | { |
289 | - error_clear_last(); |
|
290 | - $result = \openssl_decrypt($data, $method, $key, $options, $iv, $tag, $aad); |
|
291 | - if ($result === false) { |
|
292 | - throw OpensslException::createFromPhpError(); |
|
293 | - } |
|
294 | - return $result; |
|
289 | + error_clear_last(); |
|
290 | + $result = \openssl_decrypt($data, $method, $key, $options, $iv, $tag, $aad); |
|
291 | + if ($result === false) { |
|
292 | + throw OpensslException::createFromPhpError(); |
|
293 | + } |
|
294 | + return $result; |
|
295 | 295 | } |
296 | 296 | |
297 | 297 | |
@@ -308,12 +308,12 @@ discard block |
||
308 | 308 | */ |
309 | 309 | function openssl_dh_compute_key(string $pub_key, $dh_key): string |
310 | 310 | { |
311 | - error_clear_last(); |
|
312 | - $result = \openssl_dh_compute_key($pub_key, $dh_key); |
|
313 | - if ($result === false) { |
|
314 | - throw OpensslException::createFromPhpError(); |
|
315 | - } |
|
316 | - return $result; |
|
311 | + error_clear_last(); |
|
312 | + $result = \openssl_dh_compute_key($pub_key, $dh_key); |
|
313 | + if ($result === false) { |
|
314 | + throw OpensslException::createFromPhpError(); |
|
315 | + } |
|
316 | + return $result; |
|
317 | 317 | } |
318 | 318 | |
319 | 319 | |
@@ -331,12 +331,12 @@ discard block |
||
331 | 331 | */ |
332 | 332 | function openssl_digest(string $data, string $method, bool $raw_output = false): string |
333 | 333 | { |
334 | - error_clear_last(); |
|
335 | - $result = \openssl_digest($data, $method, $raw_output); |
|
336 | - if ($result === false) { |
|
337 | - throw OpensslException::createFromPhpError(); |
|
338 | - } |
|
339 | - return $result; |
|
334 | + error_clear_last(); |
|
335 | + $result = \openssl_digest($data, $method, $raw_output); |
|
336 | + if ($result === false) { |
|
337 | + throw OpensslException::createFromPhpError(); |
|
338 | + } |
|
339 | + return $result; |
|
340 | 340 | } |
341 | 341 | |
342 | 342 | |
@@ -362,15 +362,15 @@ discard block |
||
362 | 362 | */ |
363 | 363 | function openssl_open(string $sealed_data, ?string &$open_data, string $env_key, $priv_key_id, string $method = "RC4", string $iv = null): void |
364 | 364 | { |
365 | - error_clear_last(); |
|
366 | - if ($iv !== null) { |
|
367 | - $result = \openssl_open($sealed_data, $open_data, $env_key, $priv_key_id, $method, $iv); |
|
368 | - } else { |
|
369 | - $result = \openssl_open($sealed_data, $open_data, $env_key, $priv_key_id, $method); |
|
370 | - } |
|
371 | - if ($result === false) { |
|
372 | - throw OpensslException::createFromPhpError(); |
|
373 | - } |
|
365 | + error_clear_last(); |
|
366 | + if ($iv !== null) { |
|
367 | + $result = \openssl_open($sealed_data, $open_data, $env_key, $priv_key_id, $method, $iv); |
|
368 | + } else { |
|
369 | + $result = \openssl_open($sealed_data, $open_data, $env_key, $priv_key_id, $method); |
|
370 | + } |
|
371 | + if ($result === false) { |
|
372 | + throw OpensslException::createFromPhpError(); |
|
373 | + } |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | |
@@ -390,12 +390,12 @@ discard block |
||
390 | 390 | */ |
391 | 391 | function openssl_pbkdf2(string $password, string $salt, int $key_length, int $iterations, string $digest_algorithm = "sha1"): string |
392 | 392 | { |
393 | - error_clear_last(); |
|
394 | - $result = \openssl_pbkdf2($password, $salt, $key_length, $iterations, $digest_algorithm); |
|
395 | - if ($result === false) { |
|
396 | - throw OpensslException::createFromPhpError(); |
|
397 | - } |
|
398 | - return $result; |
|
393 | + error_clear_last(); |
|
394 | + $result = \openssl_pbkdf2($password, $salt, $key_length, $iterations, $digest_algorithm); |
|
395 | + if ($result === false) { |
|
396 | + throw OpensslException::createFromPhpError(); |
|
397 | + } |
|
398 | + return $result; |
|
399 | 399 | } |
400 | 400 | |
401 | 401 | |
@@ -435,15 +435,15 @@ discard block |
||
435 | 435 | */ |
436 | 436 | function openssl_pkcs12_export_to_file($x509, string $filename, $priv_key, string $pass, array $args = null): void |
437 | 437 | { |
438 | - error_clear_last(); |
|
439 | - if ($args !== null) { |
|
440 | - $result = \openssl_pkcs12_export_to_file($x509, $filename, $priv_key, $pass, $args); |
|
441 | - } else { |
|
442 | - $result = \openssl_pkcs12_export_to_file($x509, $filename, $priv_key, $pass); |
|
443 | - } |
|
444 | - if ($result === false) { |
|
445 | - throw OpensslException::createFromPhpError(); |
|
446 | - } |
|
438 | + error_clear_last(); |
|
439 | + if ($args !== null) { |
|
440 | + $result = \openssl_pkcs12_export_to_file($x509, $filename, $priv_key, $pass, $args); |
|
441 | + } else { |
|
442 | + $result = \openssl_pkcs12_export_to_file($x509, $filename, $priv_key, $pass); |
|
443 | + } |
|
444 | + if ($result === false) { |
|
445 | + throw OpensslException::createFromPhpError(); |
|
446 | + } |
|
447 | 447 | } |
448 | 448 | |
449 | 449 | |
@@ -483,15 +483,15 @@ discard block |
||
483 | 483 | */ |
484 | 484 | function openssl_pkcs12_export($x509, ?string &$out, $priv_key, string $pass, array $args = null): void |
485 | 485 | { |
486 | - error_clear_last(); |
|
487 | - if ($args !== null) { |
|
488 | - $result = \openssl_pkcs12_export($x509, $out, $priv_key, $pass, $args); |
|
489 | - } else { |
|
490 | - $result = \openssl_pkcs12_export($x509, $out, $priv_key, $pass); |
|
491 | - } |
|
492 | - if ($result === false) { |
|
493 | - throw OpensslException::createFromPhpError(); |
|
494 | - } |
|
486 | + error_clear_last(); |
|
487 | + if ($args !== null) { |
|
488 | + $result = \openssl_pkcs12_export($x509, $out, $priv_key, $pass, $args); |
|
489 | + } else { |
|
490 | + $result = \openssl_pkcs12_export($x509, $out, $priv_key, $pass); |
|
491 | + } |
|
492 | + if ($result === false) { |
|
493 | + throw OpensslException::createFromPhpError(); |
|
494 | + } |
|
495 | 495 | } |
496 | 496 | |
497 | 497 | |
@@ -508,11 +508,11 @@ discard block |
||
508 | 508 | */ |
509 | 509 | function openssl_pkcs12_read(string $pkcs12, ?array &$certs, string $pass): void |
510 | 510 | { |
511 | - error_clear_last(); |
|
512 | - $result = \openssl_pkcs12_read($pkcs12, $certs, $pass); |
|
513 | - if ($result === false) { |
|
514 | - throw OpensslException::createFromPhpError(); |
|
515 | - } |
|
511 | + error_clear_last(); |
|
512 | + $result = \openssl_pkcs12_read($pkcs12, $certs, $pass); |
|
513 | + if ($result === false) { |
|
514 | + throw OpensslException::createFromPhpError(); |
|
515 | + } |
|
516 | 516 | } |
517 | 517 | |
518 | 518 | |
@@ -532,15 +532,15 @@ discard block |
||
532 | 532 | */ |
533 | 533 | function openssl_pkcs7_decrypt(string $infilename, string $outfilename, $recipcert, $recipkey = null): void |
534 | 534 | { |
535 | - error_clear_last(); |
|
536 | - if ($recipkey !== null) { |
|
537 | - $result = \openssl_pkcs7_decrypt($infilename, $outfilename, $recipcert, $recipkey); |
|
538 | - } else { |
|
539 | - $result = \openssl_pkcs7_decrypt($infilename, $outfilename, $recipcert); |
|
540 | - } |
|
541 | - if ($result === false) { |
|
542 | - throw OpensslException::createFromPhpError(); |
|
543 | - } |
|
535 | + error_clear_last(); |
|
536 | + if ($recipkey !== null) { |
|
537 | + $result = \openssl_pkcs7_decrypt($infilename, $outfilename, $recipcert, $recipkey); |
|
538 | + } else { |
|
539 | + $result = \openssl_pkcs7_decrypt($infilename, $outfilename, $recipcert); |
|
540 | + } |
|
541 | + if ($result === false) { |
|
542 | + throw OpensslException::createFromPhpError(); |
|
543 | + } |
|
544 | 544 | } |
545 | 545 | |
546 | 546 | |
@@ -568,11 +568,11 @@ discard block |
||
568 | 568 | */ |
569 | 569 | function openssl_pkcs7_encrypt(string $infile, string $outfile, $recipcerts, array $headers, int $flags = 0, int $cipherid = OPENSSL_CIPHER_RC2_40): void |
570 | 570 | { |
571 | - error_clear_last(); |
|
572 | - $result = \openssl_pkcs7_encrypt($infile, $outfile, $recipcerts, $headers, $flags, $cipherid); |
|
573 | - if ($result === false) { |
|
574 | - throw OpensslException::createFromPhpError(); |
|
575 | - } |
|
571 | + error_clear_last(); |
|
572 | + $result = \openssl_pkcs7_encrypt($infile, $outfile, $recipcerts, $headers, $flags, $cipherid); |
|
573 | + if ($result === false) { |
|
574 | + throw OpensslException::createFromPhpError(); |
|
575 | + } |
|
576 | 576 | } |
577 | 577 | |
578 | 578 | |
@@ -586,11 +586,11 @@ discard block |
||
586 | 586 | */ |
587 | 587 | function openssl_pkcs7_read(string $infilename, ?array &$certs): void |
588 | 588 | { |
589 | - error_clear_last(); |
|
590 | - $result = \openssl_pkcs7_read($infilename, $certs); |
|
591 | - if ($result === false) { |
|
592 | - throw OpensslException::createFromPhpError(); |
|
593 | - } |
|
589 | + error_clear_last(); |
|
590 | + $result = \openssl_pkcs7_read($infilename, $certs); |
|
591 | + if ($result === false) { |
|
592 | + throw OpensslException::createFromPhpError(); |
|
593 | + } |
|
594 | 594 | } |
595 | 595 | |
596 | 596 | |
@@ -620,15 +620,15 @@ discard block |
||
620 | 620 | */ |
621 | 621 | function openssl_pkcs7_sign(string $infilename, string $outfilename, $signcert, $privkey, array $headers, int $flags = PKCS7_DETACHED, string $extracerts = null): void |
622 | 622 | { |
623 | - error_clear_last(); |
|
624 | - if ($extracerts !== null) { |
|
625 | - $result = \openssl_pkcs7_sign($infilename, $outfilename, $signcert, $privkey, $headers, $flags, $extracerts); |
|
626 | - } else { |
|
627 | - $result = \openssl_pkcs7_sign($infilename, $outfilename, $signcert, $privkey, $headers, $flags); |
|
628 | - } |
|
629 | - if ($result === false) { |
|
630 | - throw OpensslException::createFromPhpError(); |
|
631 | - } |
|
623 | + error_clear_last(); |
|
624 | + if ($extracerts !== null) { |
|
625 | + $result = \openssl_pkcs7_sign($infilename, $outfilename, $signcert, $privkey, $headers, $flags, $extracerts); |
|
626 | + } else { |
|
627 | + $result = \openssl_pkcs7_sign($infilename, $outfilename, $signcert, $privkey, $headers, $flags); |
|
628 | + } |
|
629 | + if ($result === false) { |
|
630 | + throw OpensslException::createFromPhpError(); |
|
631 | + } |
|
632 | 632 | } |
633 | 633 | |
634 | 634 | |
@@ -650,17 +650,17 @@ discard block |
||
650 | 650 | */ |
651 | 651 | function openssl_pkey_export_to_file($key, string $outfilename, string $passphrase = null, array $configargs = null): void |
652 | 652 | { |
653 | - error_clear_last(); |
|
654 | - if ($configargs !== null) { |
|
655 | - $result = \openssl_pkey_export_to_file($key, $outfilename, $passphrase, $configargs); |
|
656 | - } elseif ($passphrase !== null) { |
|
657 | - $result = \openssl_pkey_export_to_file($key, $outfilename, $passphrase); |
|
658 | - } else { |
|
659 | - $result = \openssl_pkey_export_to_file($key, $outfilename); |
|
660 | - } |
|
661 | - if ($result === false) { |
|
662 | - throw OpensslException::createFromPhpError(); |
|
663 | - } |
|
653 | + error_clear_last(); |
|
654 | + if ($configargs !== null) { |
|
655 | + $result = \openssl_pkey_export_to_file($key, $outfilename, $passphrase, $configargs); |
|
656 | + } elseif ($passphrase !== null) { |
|
657 | + $result = \openssl_pkey_export_to_file($key, $outfilename, $passphrase); |
|
658 | + } else { |
|
659 | + $result = \openssl_pkey_export_to_file($key, $outfilename); |
|
660 | + } |
|
661 | + if ($result === false) { |
|
662 | + throw OpensslException::createFromPhpError(); |
|
663 | + } |
|
664 | 664 | } |
665 | 665 | |
666 | 666 | |
@@ -681,17 +681,17 @@ discard block |
||
681 | 681 | */ |
682 | 682 | function openssl_pkey_export($key, ?string &$out, string $passphrase = null, array $configargs = null): void |
683 | 683 | { |
684 | - error_clear_last(); |
|
685 | - if ($configargs !== null) { |
|
686 | - $result = \openssl_pkey_export($key, $out, $passphrase, $configargs); |
|
687 | - } elseif ($passphrase !== null) { |
|
688 | - $result = \openssl_pkey_export($key, $out, $passphrase); |
|
689 | - } else { |
|
690 | - $result = \openssl_pkey_export($key, $out); |
|
691 | - } |
|
692 | - if ($result === false) { |
|
693 | - throw OpensslException::createFromPhpError(); |
|
694 | - } |
|
684 | + error_clear_last(); |
|
685 | + if ($configargs !== null) { |
|
686 | + $result = \openssl_pkey_export($key, $out, $passphrase, $configargs); |
|
687 | + } elseif ($passphrase !== null) { |
|
688 | + $result = \openssl_pkey_export($key, $out, $passphrase); |
|
689 | + } else { |
|
690 | + $result = \openssl_pkey_export($key, $out); |
|
691 | + } |
|
692 | + if ($result === false) { |
|
693 | + throw OpensslException::createFromPhpError(); |
|
694 | + } |
|
695 | 695 | } |
696 | 696 | |
697 | 697 | |
@@ -716,12 +716,12 @@ discard block |
||
716 | 716 | */ |
717 | 717 | function openssl_pkey_get_private(string $key, string $passphrase = "") |
718 | 718 | { |
719 | - error_clear_last(); |
|
720 | - $result = \openssl_pkey_get_private($key, $passphrase); |
|
721 | - if ($result === false) { |
|
722 | - throw OpensslException::createFromPhpError(); |
|
723 | - } |
|
724 | - return $result; |
|
719 | + error_clear_last(); |
|
720 | + $result = \openssl_pkey_get_private($key, $passphrase); |
|
721 | + if ($result === false) { |
|
722 | + throw OpensslException::createFromPhpError(); |
|
723 | + } |
|
724 | + return $result; |
|
725 | 725 | } |
726 | 726 | |
727 | 727 | |
@@ -746,12 +746,12 @@ discard block |
||
746 | 746 | */ |
747 | 747 | function openssl_pkey_get_public($certificate) |
748 | 748 | { |
749 | - error_clear_last(); |
|
750 | - $result = \openssl_pkey_get_public($certificate); |
|
751 | - if ($result === false) { |
|
752 | - throw OpensslException::createFromPhpError(); |
|
753 | - } |
|
754 | - return $result; |
|
749 | + error_clear_last(); |
|
750 | + $result = \openssl_pkey_get_public($certificate); |
|
751 | + if ($result === false) { |
|
752 | + throw OpensslException::createFromPhpError(); |
|
753 | + } |
|
754 | + return $result; |
|
755 | 755 | } |
756 | 756 | |
757 | 757 | |
@@ -770,16 +770,16 @@ discard block |
||
770 | 770 | */ |
771 | 771 | function openssl_pkey_new(array $configargs = null) |
772 | 772 | { |
773 | - error_clear_last(); |
|
774 | - if ($configargs !== null) { |
|
775 | - $result = \openssl_pkey_new($configargs); |
|
776 | - } else { |
|
777 | - $result = \openssl_pkey_new(); |
|
778 | - } |
|
779 | - if ($result === false) { |
|
780 | - throw OpensslException::createFromPhpError(); |
|
781 | - } |
|
782 | - return $result; |
|
773 | + error_clear_last(); |
|
774 | + if ($configargs !== null) { |
|
775 | + $result = \openssl_pkey_new($configargs); |
|
776 | + } else { |
|
777 | + $result = \openssl_pkey_new(); |
|
778 | + } |
|
779 | + if ($result === false) { |
|
780 | + throw OpensslException::createFromPhpError(); |
|
781 | + } |
|
782 | + return $result; |
|
783 | 783 | } |
784 | 784 | |
785 | 785 | |
@@ -805,11 +805,11 @@ discard block |
||
805 | 805 | */ |
806 | 806 | function openssl_private_decrypt(string $data, ?string &$decrypted, $key, int $padding = OPENSSL_PKCS1_PADDING): void |
807 | 807 | { |
808 | - error_clear_last(); |
|
809 | - $result = \openssl_private_decrypt($data, $decrypted, $key, $padding); |
|
810 | - if ($result === false) { |
|
811 | - throw OpensslException::createFromPhpError(); |
|
812 | - } |
|
808 | + error_clear_last(); |
|
809 | + $result = \openssl_private_decrypt($data, $decrypted, $key, $padding); |
|
810 | + if ($result === false) { |
|
811 | + throw OpensslException::createFromPhpError(); |
|
812 | + } |
|
813 | 813 | } |
814 | 814 | |
815 | 815 | |
@@ -833,11 +833,11 @@ discard block |
||
833 | 833 | */ |
834 | 834 | function openssl_private_encrypt(string $data, ?string &$crypted, $key, int $padding = OPENSSL_PKCS1_PADDING): void |
835 | 835 | { |
836 | - error_clear_last(); |
|
837 | - $result = \openssl_private_encrypt($data, $crypted, $key, $padding); |
|
838 | - if ($result === false) { |
|
839 | - throw OpensslException::createFromPhpError(); |
|
840 | - } |
|
836 | + error_clear_last(); |
|
837 | + $result = \openssl_private_encrypt($data, $crypted, $key, $padding); |
|
838 | + if ($result === false) { |
|
839 | + throw OpensslException::createFromPhpError(); |
|
840 | + } |
|
841 | 841 | } |
842 | 842 | |
843 | 843 | |
@@ -862,11 +862,11 @@ discard block |
||
862 | 862 | */ |
863 | 863 | function openssl_public_decrypt(string $data, ?string &$decrypted, $key, int $padding = OPENSSL_PKCS1_PADDING): void |
864 | 864 | { |
865 | - error_clear_last(); |
|
866 | - $result = \openssl_public_decrypt($data, $decrypted, $key, $padding); |
|
867 | - if ($result === false) { |
|
868 | - throw OpensslException::createFromPhpError(); |
|
869 | - } |
|
865 | + error_clear_last(); |
|
866 | + $result = \openssl_public_decrypt($data, $decrypted, $key, $padding); |
|
867 | + if ($result === false) { |
|
868 | + throw OpensslException::createFromPhpError(); |
|
869 | + } |
|
870 | 870 | } |
871 | 871 | |
872 | 872 | |
@@ -893,11 +893,11 @@ discard block |
||
893 | 893 | */ |
894 | 894 | function openssl_public_encrypt(string $data, ?string &$crypted, $key, int $padding = OPENSSL_PKCS1_PADDING): void |
895 | 895 | { |
896 | - error_clear_last(); |
|
897 | - $result = \openssl_public_encrypt($data, $crypted, $key, $padding); |
|
898 | - if ($result === false) { |
|
899 | - throw OpensslException::createFromPhpError(); |
|
900 | - } |
|
896 | + error_clear_last(); |
|
897 | + $result = \openssl_public_encrypt($data, $crypted, $key, $padding); |
|
898 | + if ($result === false) { |
|
899 | + throw OpensslException::createFromPhpError(); |
|
900 | + } |
|
901 | 901 | } |
902 | 902 | |
903 | 903 | |
@@ -920,12 +920,12 @@ discard block |
||
920 | 920 | */ |
921 | 921 | function openssl_random_pseudo_bytes(int $length, ?bool &$crypto_strong = null): string |
922 | 922 | { |
923 | - error_clear_last(); |
|
924 | - $result = \openssl_random_pseudo_bytes($length, $crypto_strong); |
|
925 | - if ($result === false) { |
|
926 | - throw OpensslException::createFromPhpError(); |
|
927 | - } |
|
928 | - return $result; |
|
923 | + error_clear_last(); |
|
924 | + $result = \openssl_random_pseudo_bytes($length, $crypto_strong); |
|
925 | + if ($result === false) { |
|
926 | + throw OpensslException::createFromPhpError(); |
|
927 | + } |
|
928 | + return $result; |
|
929 | 929 | } |
930 | 930 | |
931 | 931 | |
@@ -955,12 +955,12 @@ discard block |
||
955 | 955 | */ |
956 | 956 | function openssl_seal(string $data, ?string &$sealed_data, array &$env_keys, array $pub_key_ids, string $method = "RC4", string &$iv = null): int |
957 | 957 | { |
958 | - error_clear_last(); |
|
959 | - $result = \openssl_seal($data, $sealed_data, $env_keys, $pub_key_ids, $method, $iv); |
|
960 | - if ($result === false) { |
|
961 | - throw OpensslException::createFromPhpError(); |
|
962 | - } |
|
963 | - return $result; |
|
958 | + error_clear_last(); |
|
959 | + $result = \openssl_seal($data, $sealed_data, $env_keys, $pub_key_ids, $method, $iv); |
|
960 | + if ($result === false) { |
|
961 | + throw OpensslException::createFromPhpError(); |
|
962 | + } |
|
963 | + return $result; |
|
964 | 964 | } |
965 | 965 | |
966 | 966 | |
@@ -985,11 +985,11 @@ discard block |
||
985 | 985 | */ |
986 | 986 | function openssl_sign(string $data, ?string &$signature, $priv_key_id, $signature_alg = OPENSSL_ALGO_SHA1): void |
987 | 987 | { |
988 | - error_clear_last(); |
|
989 | - $result = \openssl_sign($data, $signature, $priv_key_id, $signature_alg); |
|
990 | - if ($result === false) { |
|
991 | - throw OpensslException::createFromPhpError(); |
|
992 | - } |
|
988 | + error_clear_last(); |
|
989 | + $result = \openssl_sign($data, $signature, $priv_key_id, $signature_alg); |
|
990 | + if ($result === false) { |
|
991 | + throw OpensslException::createFromPhpError(); |
|
992 | + } |
|
993 | 993 | } |
994 | 994 | |
995 | 995 | |
@@ -1010,11 +1010,11 @@ discard block |
||
1010 | 1010 | */ |
1011 | 1011 | function openssl_x509_export_to_file($x509, string $outfilename, bool $notext = true): void |
1012 | 1012 | { |
1013 | - error_clear_last(); |
|
1014 | - $result = \openssl_x509_export_to_file($x509, $outfilename, $notext); |
|
1015 | - if ($result === false) { |
|
1016 | - throw OpensslException::createFromPhpError(); |
|
1017 | - } |
|
1013 | + error_clear_last(); |
|
1014 | + $result = \openssl_x509_export_to_file($x509, $outfilename, $notext); |
|
1015 | + if ($result === false) { |
|
1016 | + throw OpensslException::createFromPhpError(); |
|
1017 | + } |
|
1018 | 1018 | } |
1019 | 1019 | |
1020 | 1020 | |
@@ -1035,11 +1035,11 @@ discard block |
||
1035 | 1035 | */ |
1036 | 1036 | function openssl_x509_export($x509, ?string &$output, bool $notext = true): void |
1037 | 1037 | { |
1038 | - error_clear_last(); |
|
1039 | - $result = \openssl_x509_export($x509, $output, $notext); |
|
1040 | - if ($result === false) { |
|
1041 | - throw OpensslException::createFromPhpError(); |
|
1042 | - } |
|
1038 | + error_clear_last(); |
|
1039 | + $result = \openssl_x509_export($x509, $output, $notext); |
|
1040 | + if ($result === false) { |
|
1041 | + throw OpensslException::createFromPhpError(); |
|
1042 | + } |
|
1043 | 1043 | } |
1044 | 1044 | |
1045 | 1045 | |
@@ -1058,12 +1058,12 @@ discard block |
||
1058 | 1058 | */ |
1059 | 1059 | function openssl_x509_fingerprint($x509, string $hash_algorithm = "sha1", bool $raw_output = false): string |
1060 | 1060 | { |
1061 | - error_clear_last(); |
|
1062 | - $result = \openssl_x509_fingerprint($x509, $hash_algorithm, $raw_output); |
|
1063 | - if ($result === false) { |
|
1064 | - throw OpensslException::createFromPhpError(); |
|
1065 | - } |
|
1066 | - return $result; |
|
1061 | + error_clear_last(); |
|
1062 | + $result = \openssl_x509_fingerprint($x509, $hash_algorithm, $raw_output); |
|
1063 | + if ($result === false) { |
|
1064 | + throw OpensslException::createFromPhpError(); |
|
1065 | + } |
|
1066 | + return $result; |
|
1067 | 1067 | } |
1068 | 1068 | |
1069 | 1069 | |
@@ -1079,10 +1079,10 @@ discard block |
||
1079 | 1079 | */ |
1080 | 1080 | function openssl_x509_read($x509certdata) |
1081 | 1081 | { |
1082 | - error_clear_last(); |
|
1083 | - $result = \openssl_x509_read($x509certdata); |
|
1084 | - if ($result === false) { |
|
1085 | - throw OpensslException::createFromPhpError(); |
|
1086 | - } |
|
1087 | - return $result; |
|
1082 | + error_clear_last(); |
|
1083 | + $result = \openssl_x509_read($x509certdata); |
|
1084 | + if ($result === false) { |
|
1085 | + throw OpensslException::createFromPhpError(); |
|
1086 | + } |
|
1087 | + return $result; |
|
1088 | 1088 | } |
@@ -14,12 +14,12 @@ discard block |
||
14 | 14 | */ |
15 | 15 | function mysqli_get_cache_stats(): array |
16 | 16 | { |
17 | - error_clear_last(); |
|
18 | - $result = \mysqli_get_cache_stats(); |
|
19 | - if ($result === false) { |
|
20 | - throw MysqliException::createFromPhpError(); |
|
21 | - } |
|
22 | - return $result; |
|
17 | + error_clear_last(); |
|
18 | + $result = \mysqli_get_cache_stats(); |
|
19 | + if ($result === false) { |
|
20 | + throw MysqliException::createFromPhpError(); |
|
21 | + } |
|
22 | + return $result; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | |
@@ -33,10 +33,10 @@ discard block |
||
33 | 33 | */ |
34 | 34 | function mysqli_get_client_stats(): array |
35 | 35 | { |
36 | - error_clear_last(); |
|
37 | - $result = \mysqli_get_client_stats(); |
|
38 | - if ($result === false) { |
|
39 | - throw MysqliException::createFromPhpError(); |
|
40 | - } |
|
41 | - return $result; |
|
36 | + error_clear_last(); |
|
37 | + $result = \mysqli_get_client_stats(); |
|
38 | + if ($result === false) { |
|
39 | + throw MysqliException::createFromPhpError(); |
|
40 | + } |
|
41 | + return $result; |
|
42 | 42 | } |
@@ -15,12 +15,12 @@ discard block |
||
15 | 15 | */ |
16 | 16 | function date_parse_from_format(string $format, string $datetime): array |
17 | 17 | { |
18 | - error_clear_last(); |
|
19 | - $result = \date_parse_from_format($format, $datetime); |
|
20 | - if ($result === false) { |
|
21 | - throw DatetimeException::createFromPhpError(); |
|
22 | - } |
|
23 | - return $result; |
|
18 | + error_clear_last(); |
|
19 | + $result = \date_parse_from_format($format, $datetime); |
|
20 | + if ($result === false) { |
|
21 | + throw DatetimeException::createFromPhpError(); |
|
22 | + } |
|
23 | + return $result; |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | |
@@ -36,12 +36,12 @@ discard block |
||
36 | 36 | */ |
37 | 37 | function date_parse(string $datetime): array |
38 | 38 | { |
39 | - error_clear_last(); |
|
40 | - $result = \date_parse($datetime); |
|
41 | - if ($result === false) { |
|
42 | - throw DatetimeException::createFromPhpError(); |
|
43 | - } |
|
44 | - return $result; |
|
39 | + error_clear_last(); |
|
40 | + $result = \date_parse($datetime); |
|
41 | + if ($result === false) { |
|
42 | + throw DatetimeException::createFromPhpError(); |
|
43 | + } |
|
44 | + return $result; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | |
@@ -142,12 +142,12 @@ discard block |
||
142 | 142 | */ |
143 | 143 | function date_sun_info(int $timestamp, float $latitude, float $longitude): array |
144 | 144 | { |
145 | - error_clear_last(); |
|
146 | - $result = \date_sun_info($timestamp, $latitude, $longitude); |
|
147 | - if ($result === false) { |
|
148 | - throw DatetimeException::createFromPhpError(); |
|
149 | - } |
|
150 | - return $result; |
|
145 | + error_clear_last(); |
|
146 | + $result = \date_sun_info($timestamp, $latitude, $longitude); |
|
147 | + if ($result === false) { |
|
148 | + throw DatetimeException::createFromPhpError(); |
|
149 | + } |
|
150 | + return $result; |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | |
@@ -235,22 +235,22 @@ discard block |
||
235 | 235 | */ |
236 | 236 | function date_sunrise(int $timestamp, int $returnFormat = SUNFUNCS_RET_STRING, float $latitude = null, float $longitude = null, float $zenith = null, float $utcOffset = 0) |
237 | 237 | { |
238 | - error_clear_last(); |
|
239 | - if ($utcOffset !== 0) { |
|
240 | - $result = \date_sunrise($timestamp, $returnFormat, $latitude, $longitude, $zenith, $utcOffset); |
|
241 | - } elseif ($zenith !== null) { |
|
242 | - $result = \date_sunrise($timestamp, $returnFormat, $latitude, $longitude, $zenith); |
|
243 | - } elseif ($longitude !== null) { |
|
244 | - $result = \date_sunrise($timestamp, $returnFormat, $latitude, $longitude); |
|
245 | - } elseif ($latitude !== null) { |
|
246 | - $result = \date_sunrise($timestamp, $returnFormat, $latitude); |
|
247 | - } else { |
|
248 | - $result = \date_sunrise($timestamp, $returnFormat); |
|
249 | - } |
|
250 | - if ($result === false) { |
|
251 | - throw DatetimeException::createFromPhpError(); |
|
252 | - } |
|
253 | - return $result; |
|
238 | + error_clear_last(); |
|
239 | + if ($utcOffset !== 0) { |
|
240 | + $result = \date_sunrise($timestamp, $returnFormat, $latitude, $longitude, $zenith, $utcOffset); |
|
241 | + } elseif ($zenith !== null) { |
|
242 | + $result = \date_sunrise($timestamp, $returnFormat, $latitude, $longitude, $zenith); |
|
243 | + } elseif ($longitude !== null) { |
|
244 | + $result = \date_sunrise($timestamp, $returnFormat, $latitude, $longitude); |
|
245 | + } elseif ($latitude !== null) { |
|
246 | + $result = \date_sunrise($timestamp, $returnFormat, $latitude); |
|
247 | + } else { |
|
248 | + $result = \date_sunrise($timestamp, $returnFormat); |
|
249 | + } |
|
250 | + if ($result === false) { |
|
251 | + throw DatetimeException::createFromPhpError(); |
|
252 | + } |
|
253 | + return $result; |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | |
@@ -338,22 +338,22 @@ discard block |
||
338 | 338 | */ |
339 | 339 | function date_sunset(int $timestamp, int $returnFormat = SUNFUNCS_RET_STRING, float $latitude = null, float $longitude = null, float $zenith = null, float $utcOffset = 0) |
340 | 340 | { |
341 | - error_clear_last(); |
|
342 | - if ($utcOffset !== 0) { |
|
343 | - $result = \date_sunset($timestamp, $returnFormat, $latitude, $longitude, $zenith, $utcOffset); |
|
344 | - } elseif ($zenith !== null) { |
|
345 | - $result = \date_sunset($timestamp, $returnFormat, $latitude, $longitude, $zenith); |
|
346 | - } elseif ($longitude !== null) { |
|
347 | - $result = \date_sunset($timestamp, $returnFormat, $latitude, $longitude); |
|
348 | - } elseif ($latitude !== null) { |
|
349 | - $result = \date_sunset($timestamp, $returnFormat, $latitude); |
|
350 | - } else { |
|
351 | - $result = \date_sunset($timestamp, $returnFormat); |
|
352 | - } |
|
353 | - if ($result === false) { |
|
354 | - throw DatetimeException::createFromPhpError(); |
|
355 | - } |
|
356 | - return $result; |
|
341 | + error_clear_last(); |
|
342 | + if ($utcOffset !== 0) { |
|
343 | + $result = \date_sunset($timestamp, $returnFormat, $latitude, $longitude, $zenith, $utcOffset); |
|
344 | + } elseif ($zenith !== null) { |
|
345 | + $result = \date_sunset($timestamp, $returnFormat, $latitude, $longitude, $zenith); |
|
346 | + } elseif ($longitude !== null) { |
|
347 | + $result = \date_sunset($timestamp, $returnFormat, $latitude, $longitude); |
|
348 | + } elseif ($latitude !== null) { |
|
349 | + $result = \date_sunset($timestamp, $returnFormat, $latitude); |
|
350 | + } else { |
|
351 | + $result = \date_sunset($timestamp, $returnFormat); |
|
352 | + } |
|
353 | + if ($result === false) { |
|
354 | + throw DatetimeException::createFromPhpError(); |
|
355 | + } |
|
356 | + return $result; |
|
357 | 357 | } |
358 | 358 | |
359 | 359 | |
@@ -376,16 +376,16 @@ discard block |
||
376 | 376 | */ |
377 | 377 | function date(string $format, int $timestamp = null): string |
378 | 378 | { |
379 | - error_clear_last(); |
|
380 | - if ($timestamp !== null) { |
|
381 | - $result = \date($format, $timestamp); |
|
382 | - } else { |
|
383 | - $result = \date($format); |
|
384 | - } |
|
385 | - if ($result === false) { |
|
386 | - throw DatetimeException::createFromPhpError(); |
|
387 | - } |
|
388 | - return $result; |
|
379 | + error_clear_last(); |
|
380 | + if ($timestamp !== null) { |
|
381 | + $result = \date($format, $timestamp); |
|
382 | + } else { |
|
383 | + $result = \date($format); |
|
384 | + } |
|
385 | + if ($result === false) { |
|
386 | + throw DatetimeException::createFromPhpError(); |
|
387 | + } |
|
388 | + return $result; |
|
389 | 389 | } |
390 | 390 | |
391 | 391 | |
@@ -407,16 +407,16 @@ discard block |
||
407 | 407 | */ |
408 | 408 | function gmdate(string $format, int $timestamp = null): string |
409 | 409 | { |
410 | - error_clear_last(); |
|
411 | - if ($timestamp !== null) { |
|
412 | - $result = \gmdate($format, $timestamp); |
|
413 | - } else { |
|
414 | - $result = \gmdate($format); |
|
415 | - } |
|
416 | - if ($result === false) { |
|
417 | - throw DatetimeException::createFromPhpError(); |
|
418 | - } |
|
419 | - return $result; |
|
410 | + error_clear_last(); |
|
411 | + if ($timestamp !== null) { |
|
412 | + $result = \gmdate($format, $timestamp); |
|
413 | + } else { |
|
414 | + $result = \gmdate($format); |
|
415 | + } |
|
416 | + if ($result === false) { |
|
417 | + throw DatetimeException::createFromPhpError(); |
|
418 | + } |
|
419 | + return $result; |
|
420 | 420 | } |
421 | 421 | |
422 | 422 | |
@@ -463,26 +463,26 @@ discard block |
||
463 | 463 | */ |
464 | 464 | function mktime(int $hour = null, int $minute = null, int $second = null, int $month = null, int $day = null, int $year = null): int |
465 | 465 | { |
466 | - error_clear_last(); |
|
467 | - if ($year !== null) { |
|
468 | - $result = \mktime($hour, $minute, $second, $month, $day, $year); |
|
469 | - } elseif ($day !== null) { |
|
470 | - $result = \mktime($hour, $minute, $second, $month, $day); |
|
471 | - } elseif ($month !== null) { |
|
472 | - $result = \mktime($hour, $minute, $second, $month); |
|
473 | - } elseif ($second !== null) { |
|
474 | - $result = \mktime($hour, $minute, $second); |
|
475 | - } elseif ($minute !== null) { |
|
476 | - $result = \mktime($hour, $minute); |
|
477 | - } elseif ($hour !== null) { |
|
478 | - $result = \mktime($hour); |
|
479 | - } else { |
|
480 | - $result = \mktime(); |
|
481 | - } |
|
482 | - if ($result === false) { |
|
483 | - throw DatetimeException::createFromPhpError(); |
|
484 | - } |
|
485 | - return $result; |
|
466 | + error_clear_last(); |
|
467 | + if ($year !== null) { |
|
468 | + $result = \mktime($hour, $minute, $second, $month, $day, $year); |
|
469 | + } elseif ($day !== null) { |
|
470 | + $result = \mktime($hour, $minute, $second, $month, $day); |
|
471 | + } elseif ($month !== null) { |
|
472 | + $result = \mktime($hour, $minute, $second, $month); |
|
473 | + } elseif ($second !== null) { |
|
474 | + $result = \mktime($hour, $minute, $second); |
|
475 | + } elseif ($minute !== null) { |
|
476 | + $result = \mktime($hour, $minute); |
|
477 | + } elseif ($hour !== null) { |
|
478 | + $result = \mktime($hour); |
|
479 | + } else { |
|
480 | + $result = \mktime(); |
|
481 | + } |
|
482 | + if ($result === false) { |
|
483 | + throw DatetimeException::createFromPhpError(); |
|
484 | + } |
|
485 | + return $result; |
|
486 | 486 | } |
487 | 487 | |
488 | 488 | |
@@ -560,12 +560,12 @@ discard block |
||
560 | 560 | */ |
561 | 561 | function strptime(string $date, string $format): array |
562 | 562 | { |
563 | - error_clear_last(); |
|
564 | - $result = \strptime($date, $format); |
|
565 | - if ($result === false) { |
|
566 | - throw DatetimeException::createFromPhpError(); |
|
567 | - } |
|
568 | - return $result; |
|
563 | + error_clear_last(); |
|
564 | + $result = \strptime($date, $format); |
|
565 | + if ($result === false) { |
|
566 | + throw DatetimeException::createFromPhpError(); |
|
567 | + } |
|
568 | + return $result; |
|
569 | 569 | } |
570 | 570 | |
571 | 571 | |
@@ -586,16 +586,16 @@ discard block |
||
586 | 586 | */ |
587 | 587 | function strtotime(string $datetime, int $now = null): int |
588 | 588 | { |
589 | - error_clear_last(); |
|
590 | - if ($now !== null) { |
|
591 | - $result = \strtotime($datetime, $now); |
|
592 | - } else { |
|
593 | - $result = \strtotime($datetime); |
|
594 | - } |
|
595 | - if ($result === false) { |
|
596 | - throw DatetimeException::createFromPhpError(); |
|
597 | - } |
|
598 | - return $result; |
|
589 | + error_clear_last(); |
|
590 | + if ($now !== null) { |
|
591 | + $result = \strtotime($datetime, $now); |
|
592 | + } else { |
|
593 | + $result = \strtotime($datetime); |
|
594 | + } |
|
595 | + if ($result === false) { |
|
596 | + throw DatetimeException::createFromPhpError(); |
|
597 | + } |
|
598 | + return $result; |
|
599 | 599 | } |
600 | 600 | |
601 | 601 | |
@@ -622,10 +622,10 @@ discard block |
||
622 | 622 | */ |
623 | 623 | function timezone_name_from_abbr(string $abbr, int $utcOffset = -1, int $isDST = -1): string |
624 | 624 | { |
625 | - error_clear_last(); |
|
626 | - $result = \timezone_name_from_abbr($abbr, $utcOffset, $isDST); |
|
627 | - if ($result === false) { |
|
628 | - throw DatetimeException::createFromPhpError(); |
|
629 | - } |
|
630 | - return $result; |
|
625 | + error_clear_last(); |
|
626 | + $result = \timezone_name_from_abbr($abbr, $utcOffset, $isDST); |
|
627 | + if ($result === false) { |
|
628 | + throw DatetimeException::createFromPhpError(); |
|
629 | + } |
|
630 | + return $result; |
|
631 | 631 | } |
@@ -19,12 +19,12 @@ discard block |
||
19 | 19 | */ |
20 | 20 | function array_combine(array $keys, array $values): array |
21 | 21 | { |
22 | - error_clear_last(); |
|
23 | - $result = \array_combine($keys, $values); |
|
24 | - if ($result === false) { |
|
25 | - throw ArrayException::createFromPhpError(); |
|
26 | - } |
|
27 | - return $result; |
|
22 | + error_clear_last(); |
|
23 | + $result = \array_combine($keys, $values); |
|
24 | + if ($result === false) { |
|
25 | + throw ArrayException::createFromPhpError(); |
|
26 | + } |
|
27 | + return $result; |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | |
@@ -49,12 +49,12 @@ discard block |
||
49 | 49 | */ |
50 | 50 | function array_flip(array $array): array |
51 | 51 | { |
52 | - error_clear_last(); |
|
53 | - $result = \array_flip($array); |
|
54 | - if ($result === null) { |
|
55 | - throw ArrayException::createFromPhpError(); |
|
56 | - } |
|
57 | - return $result; |
|
52 | + error_clear_last(); |
|
53 | + $result = \array_flip($array); |
|
54 | + if ($result === null) { |
|
55 | + throw ArrayException::createFromPhpError(); |
|
56 | + } |
|
57 | + return $result; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | |
@@ -85,16 +85,16 @@ discard block |
||
85 | 85 | */ |
86 | 86 | function array_replace_recursive(array $array1, array ...$params): array |
87 | 87 | { |
88 | - error_clear_last(); |
|
89 | - if ($params !== []) { |
|
90 | - $result = \array_replace_recursive($array1, ...$params); |
|
91 | - } else { |
|
92 | - $result = \array_replace_recursive($array1); |
|
93 | - } |
|
94 | - if ($result === null) { |
|
95 | - throw ArrayException::createFromPhpError(); |
|
96 | - } |
|
97 | - return $result; |
|
88 | + error_clear_last(); |
|
89 | + if ($params !== []) { |
|
90 | + $result = \array_replace_recursive($array1, ...$params); |
|
91 | + } else { |
|
92 | + $result = \array_replace_recursive($array1); |
|
93 | + } |
|
94 | + if ($result === null) { |
|
95 | + throw ArrayException::createFromPhpError(); |
|
96 | + } |
|
97 | + return $result; |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | |
@@ -120,16 +120,16 @@ discard block |
||
120 | 120 | */ |
121 | 121 | function array_replace(array $array1, array ...$params): array |
122 | 122 | { |
123 | - error_clear_last(); |
|
124 | - if ($params !== []) { |
|
125 | - $result = \array_replace($array1, ...$params); |
|
126 | - } else { |
|
127 | - $result = \array_replace($array1); |
|
128 | - } |
|
129 | - if ($result === null) { |
|
130 | - throw ArrayException::createFromPhpError(); |
|
131 | - } |
|
132 | - return $result; |
|
123 | + error_clear_last(); |
|
124 | + if ($params !== []) { |
|
125 | + $result = \array_replace($array1, ...$params); |
|
126 | + } else { |
|
127 | + $result = \array_replace($array1); |
|
128 | + } |
|
129 | + if ($result === null) { |
|
130 | + throw ArrayException::createFromPhpError(); |
|
131 | + } |
|
132 | + return $result; |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | |
@@ -157,11 +157,11 @@ discard block |
||
157 | 157 | */ |
158 | 158 | function array_walk_recursive(array &$array, callable $callback, $userdata = null): void |
159 | 159 | { |
160 | - error_clear_last(); |
|
161 | - $result = \array_walk_recursive($array, $callback, $userdata); |
|
162 | - if ($result === false) { |
|
163 | - throw ArrayException::createFromPhpError(); |
|
164 | - } |
|
160 | + error_clear_last(); |
|
161 | + $result = \array_walk_recursive($array, $callback, $userdata); |
|
162 | + if ($result === false) { |
|
163 | + throw ArrayException::createFromPhpError(); |
|
164 | + } |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | |
@@ -181,11 +181,11 @@ discard block |
||
181 | 181 | */ |
182 | 182 | function arsort(array &$array, int $sort_flags = SORT_REGULAR): void |
183 | 183 | { |
184 | - error_clear_last(); |
|
185 | - $result = \arsort($array, $sort_flags); |
|
186 | - if ($result === false) { |
|
187 | - throw ArrayException::createFromPhpError(); |
|
188 | - } |
|
184 | + error_clear_last(); |
|
185 | + $result = \arsort($array, $sort_flags); |
|
186 | + if ($result === false) { |
|
187 | + throw ArrayException::createFromPhpError(); |
|
188 | + } |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | |
@@ -204,11 +204,11 @@ discard block |
||
204 | 204 | */ |
205 | 205 | function asort(array &$array, int $sort_flags = SORT_REGULAR): void |
206 | 206 | { |
207 | - error_clear_last(); |
|
208 | - $result = \asort($array, $sort_flags); |
|
209 | - if ($result === false) { |
|
210 | - throw ArrayException::createFromPhpError(); |
|
211 | - } |
|
207 | + error_clear_last(); |
|
208 | + $result = \asort($array, $sort_flags); |
|
209 | + if ($result === false) { |
|
210 | + throw ArrayException::createFromPhpError(); |
|
211 | + } |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | |
@@ -225,11 +225,11 @@ discard block |
||
225 | 225 | */ |
226 | 226 | function krsort(array &$array, int $sort_flags = SORT_REGULAR): void |
227 | 227 | { |
228 | - error_clear_last(); |
|
229 | - $result = \krsort($array, $sort_flags); |
|
230 | - if ($result === false) { |
|
231 | - throw ArrayException::createFromPhpError(); |
|
232 | - } |
|
228 | + error_clear_last(); |
|
229 | + $result = \krsort($array, $sort_flags); |
|
230 | + if ($result === false) { |
|
231 | + throw ArrayException::createFromPhpError(); |
|
232 | + } |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | |
@@ -246,11 +246,11 @@ discard block |
||
246 | 246 | */ |
247 | 247 | function ksort(array &$array, int $sort_flags = SORT_REGULAR): void |
248 | 248 | { |
249 | - error_clear_last(); |
|
250 | - $result = \ksort($array, $sort_flags); |
|
251 | - if ($result === false) { |
|
252 | - throw ArrayException::createFromPhpError(); |
|
253 | - } |
|
249 | + error_clear_last(); |
|
250 | + $result = \ksort($array, $sort_flags); |
|
251 | + if ($result === false) { |
|
252 | + throw ArrayException::createFromPhpError(); |
|
253 | + } |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | |
@@ -268,11 +268,11 @@ discard block |
||
268 | 268 | */ |
269 | 269 | function natcasesort(array &$array): void |
270 | 270 | { |
271 | - error_clear_last(); |
|
272 | - $result = \natcasesort($array); |
|
273 | - if ($result === false) { |
|
274 | - throw ArrayException::createFromPhpError(); |
|
275 | - } |
|
271 | + error_clear_last(); |
|
272 | + $result = \natcasesort($array); |
|
273 | + if ($result === false) { |
|
274 | + throw ArrayException::createFromPhpError(); |
|
275 | + } |
|
276 | 276 | } |
277 | 277 | |
278 | 278 | |
@@ -289,11 +289,11 @@ discard block |
||
289 | 289 | */ |
290 | 290 | function natsort(array &$array): void |
291 | 291 | { |
292 | - error_clear_last(); |
|
293 | - $result = \natsort($array); |
|
294 | - if ($result === false) { |
|
295 | - throw ArrayException::createFromPhpError(); |
|
296 | - } |
|
292 | + error_clear_last(); |
|
293 | + $result = \natsort($array); |
|
294 | + if ($result === false) { |
|
295 | + throw ArrayException::createFromPhpError(); |
|
296 | + } |
|
297 | 297 | } |
298 | 298 | |
299 | 299 | |
@@ -309,11 +309,11 @@ discard block |
||
309 | 309 | */ |
310 | 310 | function rsort(array &$array, int $sort_flags = SORT_REGULAR): void |
311 | 311 | { |
312 | - error_clear_last(); |
|
313 | - $result = \rsort($array, $sort_flags); |
|
314 | - if ($result === false) { |
|
315 | - throw ArrayException::createFromPhpError(); |
|
316 | - } |
|
312 | + error_clear_last(); |
|
313 | + $result = \rsort($array, $sort_flags); |
|
314 | + if ($result === false) { |
|
315 | + throw ArrayException::createFromPhpError(); |
|
316 | + } |
|
317 | 317 | } |
318 | 318 | |
319 | 319 | |
@@ -328,11 +328,11 @@ discard block |
||
328 | 328 | */ |
329 | 329 | function shuffle(array &$array): void |
330 | 330 | { |
331 | - error_clear_last(); |
|
332 | - $result = \shuffle($array); |
|
333 | - if ($result === false) { |
|
334 | - throw ArrayException::createFromPhpError(); |
|
335 | - } |
|
331 | + error_clear_last(); |
|
332 | + $result = \shuffle($array); |
|
333 | + if ($result === false) { |
|
334 | + throw ArrayException::createFromPhpError(); |
|
335 | + } |
|
336 | 336 | } |
337 | 337 | |
338 | 338 | |
@@ -383,11 +383,11 @@ discard block |
||
383 | 383 | */ |
384 | 384 | function sort(array &$array, int $sort_flags = SORT_REGULAR): void |
385 | 385 | { |
386 | - error_clear_last(); |
|
387 | - $result = \sort($array, $sort_flags); |
|
388 | - if ($result === false) { |
|
389 | - throw ArrayException::createFromPhpError(); |
|
390 | - } |
|
386 | + error_clear_last(); |
|
387 | + $result = \sort($array, $sort_flags); |
|
388 | + if ($result === false) { |
|
389 | + throw ArrayException::createFromPhpError(); |
|
390 | + } |
|
391 | 391 | } |
392 | 392 | |
393 | 393 | |
@@ -407,11 +407,11 @@ discard block |
||
407 | 407 | */ |
408 | 408 | function uasort(array &$array, callable $value_compare_func): void |
409 | 409 | { |
410 | - error_clear_last(); |
|
411 | - $result = \uasort($array, $value_compare_func); |
|
412 | - if ($result === false) { |
|
413 | - throw ArrayException::createFromPhpError(); |
|
414 | - } |
|
410 | + error_clear_last(); |
|
411 | + $result = \uasort($array, $value_compare_func); |
|
412 | + if ($result === false) { |
|
413 | + throw ArrayException::createFromPhpError(); |
|
414 | + } |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | |
@@ -429,11 +429,11 @@ discard block |
||
429 | 429 | */ |
430 | 430 | function uksort(array &$array, callable $key_compare_func): void |
431 | 431 | { |
432 | - error_clear_last(); |
|
433 | - $result = \uksort($array, $key_compare_func); |
|
434 | - if ($result === false) { |
|
435 | - throw ArrayException::createFromPhpError(); |
|
436 | - } |
|
432 | + error_clear_last(); |
|
433 | + $result = \uksort($array, $key_compare_func); |
|
434 | + if ($result === false) { |
|
435 | + throw ArrayException::createFromPhpError(); |
|
436 | + } |
|
437 | 437 | } |
438 | 438 | |
439 | 439 | |
@@ -456,9 +456,9 @@ discard block |
||
456 | 456 | */ |
457 | 457 | function usort(array &$array, callable $value_compare_func): void |
458 | 458 | { |
459 | - error_clear_last(); |
|
460 | - $result = \usort($array, $value_compare_func); |
|
461 | - if ($result === false) { |
|
462 | - throw ArrayException::createFromPhpError(); |
|
463 | - } |
|
459 | + error_clear_last(); |
|
460 | + $result = \usort($array, $value_compare_func); |
|
461 | + if ($result === false) { |
|
462 | + throw ArrayException::createFromPhpError(); |
|
463 | + } |
|
464 | 464 | } |
@@ -13,11 +13,11 @@ discard block |
||
13 | 13 | */ |
14 | 14 | function finfo_close($finfo): void |
15 | 15 | { |
16 | - error_clear_last(); |
|
17 | - $result = \finfo_close($finfo); |
|
18 | - if ($result === false) { |
|
19 | - throw FileinfoException::createFromPhpError(); |
|
20 | - } |
|
16 | + error_clear_last(); |
|
17 | + $result = \finfo_close($finfo); |
|
18 | + if ($result === false) { |
|
19 | + throw FileinfoException::createFromPhpError(); |
|
20 | + } |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | |
@@ -45,12 +45,12 @@ discard block |
||
45 | 45 | */ |
46 | 46 | function finfo_open(int $options = FILEINFO_NONE, string $magic_file = "") |
47 | 47 | { |
48 | - error_clear_last(); |
|
49 | - $result = \finfo_open($options, $magic_file); |
|
50 | - if ($result === false) { |
|
51 | - throw FileinfoException::createFromPhpError(); |
|
52 | - } |
|
53 | - return $result; |
|
48 | + error_clear_last(); |
|
49 | + $result = \finfo_open($options, $magic_file); |
|
50 | + if ($result === false) { |
|
51 | + throw FileinfoException::createFromPhpError(); |
|
52 | + } |
|
53 | + return $result; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | |
@@ -66,10 +66,10 @@ discard block |
||
66 | 66 | */ |
67 | 67 | function mime_content_type(string $filename): string |
68 | 68 | { |
69 | - error_clear_last(); |
|
70 | - $result = \mime_content_type($filename); |
|
71 | - if ($result === false) { |
|
72 | - throw FileinfoException::createFromPhpError(); |
|
73 | - } |
|
74 | - return $result; |
|
69 | + error_clear_last(); |
|
70 | + $result = \mime_content_type($filename); |
|
71 | + if ($result === false) { |
|
72 | + throw FileinfoException::createFromPhpError(); |
|
73 | + } |
|
74 | + return $result; |
|
75 | 75 | } |
@@ -1,1070 +1,1070 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return [ |
4 | - 'apache_getenv', |
|
5 | - 'apache_get_version', |
|
6 | - 'apache_request_headers', |
|
7 | - 'apache_reset_timeout', |
|
8 | - 'apache_response_headers', |
|
9 | - 'apache_setenv', |
|
10 | - 'apcu_cache_info', |
|
11 | - 'apcu_cas', |
|
12 | - 'apcu_dec', |
|
13 | - 'apcu_fetch', |
|
14 | - 'apcu_inc', |
|
15 | - 'apcu_sma_info', |
|
16 | - 'apc_fetch', |
|
17 | - 'array_combine', |
|
18 | - 'array_flip', |
|
19 | - 'array_replace', |
|
20 | - 'array_replace_recursive', |
|
21 | - 'array_walk_recursive', |
|
22 | - 'arsort', |
|
23 | - 'asort', |
|
24 | - 'base64_decode', |
|
25 | - 'bzclose', |
|
26 | - 'bzflush', |
|
27 | - 'bzread', |
|
28 | - 'bzwrite', |
|
29 | - 'chdir', |
|
30 | - 'chgrp', |
|
31 | - 'chmod', |
|
32 | - 'chown', |
|
33 | - 'chroot', |
|
34 | - 'class_alias', |
|
35 | - 'class_implements', |
|
36 | - 'class_parents', |
|
37 | - 'class_uses', |
|
38 | - 'cli_set_process_title', |
|
39 | - 'closelog', |
|
40 | - 'com_event_sink', |
|
41 | - 'com_load_typelib', |
|
42 | - 'com_print_typeinfo', |
|
43 | - 'convert_uudecode', |
|
44 | - 'convert_uuencode', |
|
45 | - 'copy', |
|
46 | - 'create_function', |
|
47 | - 'cubrid_free_result', |
|
48 | - 'cubrid_get_charset', |
|
49 | - 'cubrid_get_client_info', |
|
50 | - 'cubrid_get_db_parameter', |
|
51 | - 'cubrid_get_server_info', |
|
52 | - 'cubrid_insert_id', |
|
53 | - 'cubrid_lob2_new', |
|
54 | - 'cubrid_lob2_size', |
|
55 | - 'cubrid_lob2_size64', |
|
56 | - 'cubrid_lob2_tell', |
|
57 | - 'cubrid_lob2_tell64', |
|
58 | - 'cubrid_set_db_parameter', |
|
59 | - 'curl_escape', |
|
60 | - 'curl_exec', |
|
61 | - 'curl_getinfo', |
|
62 | - 'curl_init', |
|
63 | - 'curl_multi_errno', |
|
64 | - 'curl_multi_info_read', |
|
65 | - 'curl_multi_init', |
|
66 | - 'curl_setopt', |
|
67 | - 'curl_share_errno', |
|
68 | - 'curl_share_setopt', |
|
69 | - 'curl_unescape', |
|
70 | - 'date', |
|
71 | - 'date_parse', |
|
72 | - 'date_parse_from_format', |
|
73 | - 'date_sunrise', |
|
74 | - 'date_sunset', |
|
75 | - 'date_sun_info', |
|
76 | - 'db2_autocommit', |
|
77 | - 'db2_bind_param', |
|
78 | - 'db2_client_info', |
|
79 | - 'db2_close', |
|
80 | - 'db2_commit', |
|
81 | - 'db2_execute', |
|
82 | - 'db2_free_result', |
|
83 | - 'db2_free_stmt', |
|
84 | - 'db2_get_option', |
|
85 | - 'db2_pclose', |
|
86 | - 'db2_rollback', |
|
87 | - 'db2_server_info', |
|
88 | - 'db2_set_option', |
|
89 | - 'define', |
|
90 | - 'deflate_add', |
|
91 | - 'deflate_init', |
|
92 | - 'disk_free_space', |
|
93 | - 'disk_total_space', |
|
94 | - 'dl', |
|
95 | - 'dns_get_record', |
|
96 | - 'eio_busy', |
|
97 | - 'eio_chmod', |
|
98 | - 'eio_chown', |
|
99 | - 'eio_close', |
|
100 | - 'eio_custom', |
|
101 | - 'eio_dup2', |
|
102 | - 'eio_event_loop', |
|
103 | - 'eio_fallocate', |
|
104 | - 'eio_fchmod', |
|
105 | - 'eio_fdatasync', |
|
106 | - 'eio_fstat', |
|
107 | - 'eio_fstatvfs', |
|
108 | - 'eio_fsync', |
|
109 | - 'eio_ftruncate', |
|
110 | - 'eio_futime', |
|
111 | - 'eio_grp', |
|
112 | - 'eio_lstat', |
|
113 | - 'eio_mkdir', |
|
114 | - 'eio_mknod', |
|
115 | - 'eio_nop', |
|
116 | - 'eio_readahead', |
|
117 | - 'eio_readdir', |
|
118 | - 'eio_readlink', |
|
119 | - 'eio_rename', |
|
120 | - 'eio_rmdir', |
|
121 | - 'eio_seek', |
|
122 | - 'eio_sendfile', |
|
123 | - 'eio_stat', |
|
124 | - 'eio_statvfs', |
|
125 | - 'eio_symlink', |
|
126 | - 'eio_sync', |
|
127 | - 'eio_syncfs', |
|
128 | - 'eio_sync_file_range', |
|
129 | - 'eio_truncate', |
|
130 | - 'eio_unlink', |
|
131 | - 'eio_utime', |
|
132 | - 'eio_write', |
|
133 | - 'error_log', |
|
134 | - 'fastcgi_finish_request', |
|
135 | - 'fbird_blob_cancel', |
|
136 | - 'fclose', |
|
137 | - 'fflush', |
|
138 | - 'file', |
|
139 | - 'fileatime', |
|
140 | - 'filectime', |
|
141 | - 'fileinode', |
|
142 | - 'filemtime', |
|
143 | - 'fileowner', |
|
144 | - 'filesize', |
|
145 | - 'file_get_contents', |
|
146 | - 'file_put_contents', |
|
147 | - 'filter_input_array', |
|
148 | - 'filter_var_array', |
|
149 | - 'finfo_close', |
|
150 | - 'finfo_open', |
|
151 | - 'flock', |
|
152 | - 'fopen', |
|
153 | - 'fputcsv', |
|
154 | - 'fread', |
|
155 | - 'fsockopen', |
|
156 | - 'ftp_alloc', |
|
157 | - 'ftp_append', |
|
158 | - 'ftp_cdup', |
|
159 | - 'ftp_chdir', |
|
160 | - 'ftp_chmod', |
|
161 | - 'ftp_close', |
|
162 | - 'ftp_connect', |
|
163 | - 'ftp_delete', |
|
164 | - 'ftp_fget', |
|
165 | - 'ftp_fput', |
|
166 | - 'ftp_get', |
|
167 | - 'ftp_login', |
|
168 | - 'ftp_mkdir', |
|
169 | - 'ftp_mlsd', |
|
170 | - 'ftp_nlist', |
|
171 | - 'ftp_pasv', |
|
172 | - 'ftp_put', |
|
173 | - 'ftp_pwd', |
|
174 | - 'ftp_rename', |
|
175 | - 'ftp_rmdir', |
|
176 | - 'ftp_site', |
|
177 | - 'ftp_ssl_connect', |
|
178 | - 'ftp_systype', |
|
179 | - 'ftruncate', |
|
180 | - 'fwrite', |
|
181 | - 'getallheaders', |
|
182 | - 'getcwd', |
|
183 | - 'gethostname', |
|
184 | - 'getimagesize', |
|
185 | - 'getlastmod', |
|
186 | - 'getmygid', |
|
187 | - 'getmyinode', |
|
188 | - 'getmypid', |
|
189 | - 'getmyuid', |
|
190 | - 'getopt', |
|
191 | - 'getprotobyname', |
|
192 | - 'getprotobynumber', |
|
193 | - 'get_headers', |
|
194 | - 'glob', |
|
195 | - 'gmdate', |
|
196 | - 'gmp_binomial', |
|
197 | - 'gmp_export', |
|
198 | - 'gmp_import', |
|
199 | - 'gmp_random_seed', |
|
200 | - 'gnupg_adddecryptkey', |
|
201 | - 'gnupg_addencryptkey', |
|
202 | - 'gnupg_addsignkey', |
|
203 | - 'gnupg_cleardecryptkeys', |
|
204 | - 'gnupg_clearencryptkeys', |
|
205 | - 'gnupg_clearsignkeys', |
|
206 | - 'gnupg_setarmor', |
|
207 | - 'gnupg_setsignmode', |
|
208 | - 'gzclose', |
|
209 | - 'gzcompress', |
|
210 | - 'gzdecode', |
|
211 | - 'gzdeflate', |
|
212 | - 'gzencode', |
|
213 | - 'gzgets', |
|
214 | - 'gzgetss', |
|
215 | - 'gzinflate', |
|
216 | - 'gzpassthru', |
|
217 | - 'gzrewind', |
|
218 | - 'gzuncompress', |
|
219 | - 'hash_hkdf', |
|
220 | - 'hash_update_file', |
|
221 | - 'header_register_callback', |
|
222 | - 'hex2bin', |
|
223 | - 'highlight_file', |
|
224 | - 'highlight_string', |
|
225 | - 'ibase_add_user', |
|
226 | - 'ibase_backup', |
|
227 | - 'ibase_blob_cancel', |
|
228 | - 'ibase_blob_create', |
|
229 | - 'ibase_blob_get', |
|
230 | - 'ibase_close', |
|
231 | - 'ibase_commit', |
|
232 | - 'ibase_commit_ret', |
|
233 | - 'ibase_connect', |
|
234 | - 'ibase_delete_user', |
|
235 | - 'ibase_drop_db', |
|
236 | - 'ibase_free_event_handler', |
|
237 | - 'ibase_free_query', |
|
238 | - 'ibase_free_result', |
|
239 | - 'ibase_maintain_db', |
|
240 | - 'ibase_modify_user', |
|
241 | - 'ibase_name_result', |
|
242 | - 'ibase_pconnect', |
|
243 | - 'ibase_restore', |
|
244 | - 'ibase_rollback', |
|
245 | - 'ibase_rollback_ret', |
|
246 | - 'ibase_service_attach', |
|
247 | - 'ibase_service_detach', |
|
248 | - 'iconv', |
|
249 | - 'iconv_get_encoding', |
|
250 | - 'iconv_set_encoding', |
|
251 | - 'image2wbmp', |
|
252 | - 'imageaffine', |
|
253 | - 'imageaffinematrixconcat', |
|
254 | - 'imageaffinematrixget', |
|
255 | - 'imagealphablending', |
|
256 | - 'imageantialias', |
|
257 | - 'imagearc', |
|
258 | - 'imagebmp', |
|
259 | - 'imagechar', |
|
260 | - 'imagecharup', |
|
261 | - 'imagecolorat', |
|
262 | - 'imagecolordeallocate', |
|
263 | - 'imagecolormatch', |
|
264 | - 'imageconvolution', |
|
265 | - 'imagecopy', |
|
266 | - 'imagecopymerge', |
|
267 | - 'imagecopymergegray', |
|
268 | - 'imagecopyresampled', |
|
269 | - 'imagecopyresized', |
|
270 | - 'imagecreate', |
|
271 | - 'imagecreatefrombmp', |
|
272 | - 'imagecreatefromgd', |
|
273 | - 'imagecreatefromgd2', |
|
274 | - 'imagecreatefromgd2part', |
|
275 | - 'imagecreatefromgif', |
|
276 | - 'imagecreatefromjpeg', |
|
277 | - 'imagecreatefrompng', |
|
278 | - 'imagecreatefromwbmp', |
|
279 | - 'imagecreatefromwebp', |
|
280 | - 'imagecreatefromxbm', |
|
281 | - 'imagecreatefromxpm', |
|
282 | - 'imagecreatetruecolor', |
|
283 | - 'imagecrop', |
|
284 | - 'imagecropauto', |
|
285 | - 'imagedashedline', |
|
286 | - 'imagedestroy', |
|
287 | - 'imageellipse', |
|
288 | - 'imagefill', |
|
289 | - 'imagefilledarc', |
|
290 | - 'imagefilledellipse', |
|
291 | - 'imagefilledpolygon', |
|
292 | - 'imagefilledrectangle', |
|
293 | - 'imagefilltoborder', |
|
294 | - 'imagefilter', |
|
295 | - 'imageflip', |
|
296 | - 'imagegammacorrect', |
|
297 | - 'imagegd', |
|
298 | - 'imagegd2', |
|
299 | - 'imagegif', |
|
300 | - 'imagegrabscreen', |
|
301 | - 'imagegrabwindow', |
|
302 | - 'imagejpeg', |
|
303 | - 'imagelayereffect', |
|
304 | - 'imageline', |
|
305 | - 'imageloadfont', |
|
306 | - 'imageopenpolygon', |
|
307 | - 'imagepng', |
|
308 | - 'imagepolygon', |
|
309 | - 'imagerectangle', |
|
310 | - 'imagerotate', |
|
311 | - 'imagesavealpha', |
|
312 | - 'imagescale', |
|
313 | - 'imagesetbrush', |
|
314 | - 'imagesetclip', |
|
315 | - 'imagesetinterpolation', |
|
316 | - 'imagesetpixel', |
|
317 | - 'imagesetstyle', |
|
318 | - 'imagesetthickness', |
|
319 | - 'imagesettile', |
|
320 | - 'imagestring', |
|
321 | - 'imagestringup', |
|
322 | - 'imagesx', |
|
323 | - 'imagesy', |
|
324 | - 'imagetruecolortopalette', |
|
325 | - 'imagettfbbox', |
|
326 | - 'imagettftext', |
|
327 | - 'imagewbmp', |
|
328 | - 'imagewebp', |
|
329 | - 'imagexbm', |
|
330 | - 'imap_append', |
|
331 | - 'imap_check', |
|
332 | - 'imap_clearflag_full', |
|
333 | - 'imap_close', |
|
334 | - 'imap_createmailbox', |
|
335 | - 'imap_deletemailbox', |
|
336 | - 'imap_fetchstructure', |
|
337 | - 'imap_gc', |
|
338 | - 'imap_headerinfo', |
|
339 | - 'imap_mail', |
|
340 | - 'imap_mailboxmsginfo', |
|
341 | - 'imap_mail_compose', |
|
342 | - 'imap_mail_copy', |
|
343 | - 'imap_mail_move', |
|
344 | - 'imap_mutf7_to_utf8', |
|
345 | - 'imap_num_msg', |
|
346 | - 'imap_open', |
|
347 | - 'imap_renamemailbox', |
|
348 | - 'imap_savebody', |
|
349 | - 'imap_setacl', |
|
350 | - 'imap_setflag_full', |
|
351 | - 'imap_set_quota', |
|
352 | - 'imap_sort', |
|
353 | - 'imap_subscribe', |
|
354 | - 'imap_thread', |
|
355 | - 'imap_timeout', |
|
356 | - 'imap_undelete', |
|
357 | - 'imap_unsubscribe', |
|
358 | - 'imap_utf8_to_mutf7', |
|
359 | - 'inet_ntop', |
|
360 | - 'inflate_add', |
|
361 | - 'inflate_get_read_len', |
|
362 | - 'inflate_get_status', |
|
363 | - 'inflate_init', |
|
364 | - 'ingres_autocommit', |
|
365 | - 'ingres_close', |
|
366 | - 'ingres_commit', |
|
367 | - 'ingres_connect', |
|
368 | - 'ingres_execute', |
|
369 | - 'ingres_field_name', |
|
370 | - 'ingres_field_type', |
|
371 | - 'ingres_free_result', |
|
372 | - 'ingres_pconnect', |
|
373 | - 'ingres_result_seek', |
|
374 | - 'ingres_rollback', |
|
375 | - 'ingres_set_environment', |
|
376 | - 'ini_get', |
|
377 | - 'ini_set', |
|
378 | - 'inotify_init', |
|
379 | - 'inotify_rm_watch', |
|
380 | - 'iptcembed', |
|
381 | - 'iptcparse', |
|
382 | - 'jdtounix', |
|
383 | - 'jpeg2wbmp', |
|
384 | - 'json_decode', |
|
385 | - 'json_encode', |
|
386 | - 'json_last_error_msg', |
|
387 | - 'krsort', |
|
388 | - 'ksort', |
|
389 | - 'lchgrp', |
|
390 | - 'lchown', |
|
391 | - 'ldap_add', |
|
392 | - 'ldap_add_ext', |
|
393 | - 'ldap_bind', |
|
394 | - 'ldap_bind_ext', |
|
395 | - 'ldap_control_paged_result', |
|
396 | - 'ldap_control_paged_result_response', |
|
397 | - 'ldap_count_entries', |
|
398 | - 'ldap_delete', |
|
399 | - 'ldap_delete_ext', |
|
400 | - 'ldap_exop', |
|
401 | - 'ldap_exop_passwd', |
|
402 | - 'ldap_exop_whoami', |
|
403 | - 'ldap_explode_dn', |
|
404 | - 'ldap_first_attribute', |
|
405 | - 'ldap_first_entry', |
|
406 | - 'ldap_free_result', |
|
407 | - 'ldap_get_attributes', |
|
408 | - 'ldap_get_dn', |
|
409 | - 'ldap_get_entries', |
|
410 | - 'ldap_get_option', |
|
411 | - 'ldap_get_values', |
|
412 | - 'ldap_get_values_len', |
|
413 | - 'ldap_list', |
|
414 | - 'ldap_modify_batch', |
|
415 | - 'ldap_mod_add', |
|
416 | - 'ldap_mod_add_ext', |
|
417 | - 'ldap_mod_del', |
|
418 | - 'ldap_mod_del_ext', |
|
419 | - 'ldap_mod_replace', |
|
420 | - 'ldap_mod_replace_ext', |
|
421 | - 'ldap_next_attribute', |
|
422 | - 'ldap_parse_exop', |
|
423 | - 'ldap_parse_result', |
|
424 | - 'ldap_read', |
|
425 | - 'ldap_rename', |
|
426 | - 'ldap_rename_ext', |
|
427 | - 'ldap_sasl_bind', |
|
428 | - 'ldap_search', |
|
429 | - 'ldap_set_option', |
|
430 | - 'ldap_unbind', |
|
431 | - 'libxml_get_last_error', |
|
432 | - 'libxml_set_external_entity_loader', |
|
433 | - 'link', |
|
434 | - 'lzf_compress', |
|
435 | - 'lzf_decompress', |
|
436 | - 'mailparse_msg_extract_part_file', |
|
437 | - 'mailparse_msg_free', |
|
438 | - 'mailparse_msg_parse', |
|
439 | - 'mailparse_msg_parse_file', |
|
440 | - 'mailparse_stream_encode', |
|
441 | - 'mb_chr', |
|
442 | - 'mb_detect_order', |
|
443 | - 'mb_encoding_aliases', |
|
444 | - 'mb_eregi_replace', |
|
445 | - 'mb_ereg_replace', |
|
446 | - 'mb_ereg_replace_callback', |
|
447 | - 'mb_ereg_search_getregs', |
|
448 | - 'mb_ereg_search_init', |
|
449 | - 'mb_ereg_search_regs', |
|
450 | - 'mb_ereg_search_setpos', |
|
451 | - 'mb_http_output', |
|
452 | - 'mb_internal_encoding', |
|
453 | - 'mb_ord', |
|
454 | - 'mb_parse_str', |
|
455 | - 'mb_regex_encoding', |
|
456 | - 'mb_send_mail', |
|
457 | - 'mb_split', |
|
458 | - 'mb_str_split', |
|
459 | - 'md5_file', |
|
460 | - 'metaphone', |
|
461 | - 'mime_content_type', |
|
462 | - 'mkdir', |
|
463 | - 'mktime', |
|
464 | - 'msg_queue_exists', |
|
465 | - 'msg_receive', |
|
466 | - 'msg_remove_queue', |
|
467 | - 'msg_send', |
|
468 | - 'msg_set_queue', |
|
469 | - 'msql_affected_rows', |
|
470 | - 'msql_close', |
|
471 | - 'msql_connect', |
|
472 | - 'msql_create_db', |
|
473 | - 'msql_data_seek', |
|
474 | - 'msql_db_query', |
|
475 | - 'msql_drop_db', |
|
476 | - 'msql_field_len', |
|
477 | - 'msql_field_name', |
|
478 | - 'msql_field_seek', |
|
479 | - 'msql_field_table', |
|
480 | - 'msql_field_type', |
|
481 | - 'msql_free_result', |
|
482 | - 'msql_pconnect', |
|
483 | - 'msql_query', |
|
484 | - 'msql_select_db', |
|
485 | - 'mysqli_get_cache_stats', |
|
486 | - 'mysqli_get_client_stats', |
|
487 | - 'mysqlnd_ms_dump_servers', |
|
488 | - 'mysqlnd_ms_fabric_select_global', |
|
489 | - 'mysqlnd_ms_fabric_select_shard', |
|
490 | - 'mysqlnd_ms_get_last_used_connection', |
|
491 | - 'mysqlnd_qc_clear_cache', |
|
492 | - 'mysqlnd_qc_set_is_select', |
|
493 | - 'mysqlnd_qc_set_storage_handler', |
|
494 | - 'mysql_close', |
|
495 | - 'mysql_connect', |
|
496 | - 'mysql_create_db', |
|
497 | - 'mysql_data_seek', |
|
498 | - 'mysql_db_name', |
|
499 | - 'mysql_db_query', |
|
500 | - 'mysql_drop_db', |
|
501 | - 'mysql_fetch_lengths', |
|
502 | - 'mysql_field_flags', |
|
503 | - 'mysql_field_len', |
|
504 | - 'mysql_field_name', |
|
505 | - 'mysql_field_seek', |
|
506 | - 'mysql_free_result', |
|
507 | - 'mysql_get_host_info', |
|
508 | - 'mysql_get_proto_info', |
|
509 | - 'mysql_get_server_info', |
|
510 | - 'mysql_info', |
|
511 | - 'mysql_list_dbs', |
|
512 | - 'mysql_list_fields', |
|
513 | - 'mysql_list_processes', |
|
514 | - 'mysql_list_tables', |
|
515 | - 'mysql_num_fields', |
|
516 | - 'mysql_num_rows', |
|
517 | - 'mysql_query', |
|
518 | - 'mysql_real_escape_string', |
|
519 | - 'mysql_result', |
|
520 | - 'mysql_select_db', |
|
521 | - 'mysql_set_charset', |
|
522 | - 'mysql_tablename', |
|
523 | - 'mysql_thread_id', |
|
524 | - 'mysql_unbuffered_query', |
|
525 | - 'natcasesort', |
|
526 | - 'natsort', |
|
527 | - 'ob_end_clean', |
|
528 | - 'ob_end_flush', |
|
529 | - 'oci_bind_array_by_name', |
|
530 | - 'oci_bind_by_name', |
|
531 | - 'oci_cancel', |
|
532 | - 'oci_close', |
|
533 | - 'oci_commit', |
|
534 | - 'oci_connect', |
|
535 | - 'oci_define_by_name', |
|
536 | - 'oci_execute', |
|
537 | - 'oci_fetch_all', |
|
538 | - 'oci_field_name', |
|
539 | - 'oci_field_precision', |
|
540 | - 'oci_field_scale', |
|
541 | - 'oci_field_size', |
|
542 | - 'oci_field_type', |
|
543 | - 'oci_field_type_raw', |
|
544 | - 'oci_free_descriptor', |
|
545 | - 'oci_free_statement', |
|
546 | - 'oci_new_collection', |
|
547 | - 'oci_new_connect', |
|
548 | - 'oci_new_cursor', |
|
549 | - 'oci_new_descriptor', |
|
550 | - 'oci_num_fields', |
|
551 | - 'oci_num_rows', |
|
552 | - 'oci_parse', |
|
553 | - 'oci_pconnect', |
|
554 | - 'oci_result', |
|
555 | - 'oci_rollback', |
|
556 | - 'oci_server_version', |
|
557 | - 'oci_set_action', |
|
558 | - 'oci_set_call_timeout', |
|
559 | - 'oci_set_client_identifier', |
|
560 | - 'oci_set_client_info', |
|
561 | - 'oci_set_db_operation', |
|
562 | - 'oci_set_edition', |
|
563 | - 'oci_set_module_name', |
|
564 | - 'oci_set_prefetch', |
|
565 | - 'oci_statement_type', |
|
566 | - 'oci_unregister_taf_callback', |
|
567 | - 'odbc_autocommit', |
|
568 | - 'odbc_binmode', |
|
569 | - 'odbc_columnprivileges', |
|
570 | - 'odbc_columns', |
|
571 | - 'odbc_commit', |
|
572 | - 'odbc_data_source', |
|
573 | - 'odbc_exec', |
|
574 | - 'odbc_execute', |
|
575 | - 'odbc_fetch_into', |
|
576 | - 'odbc_field_len', |
|
577 | - 'odbc_field_name', |
|
578 | - 'odbc_field_num', |
|
579 | - 'odbc_field_scale', |
|
580 | - 'odbc_field_type', |
|
581 | - 'odbc_foreignkeys', |
|
582 | - 'odbc_gettypeinfo', |
|
583 | - 'odbc_longreadlen', |
|
584 | - 'odbc_prepare', |
|
585 | - 'odbc_primarykeys', |
|
586 | - 'odbc_result', |
|
587 | - 'odbc_result_all', |
|
588 | - 'odbc_rollback', |
|
589 | - 'odbc_setoption', |
|
590 | - 'odbc_specialcolumns', |
|
591 | - 'odbc_statistics', |
|
592 | - 'odbc_tableprivileges', |
|
593 | - 'odbc_tables', |
|
594 | - 'opcache_compile_file', |
|
595 | - 'opcache_get_status', |
|
596 | - 'opendir', |
|
597 | - 'openlog', |
|
598 | - 'openssl_cipher_iv_length', |
|
599 | - 'openssl_csr_export', |
|
600 | - 'openssl_csr_export_to_file', |
|
601 | - 'openssl_csr_get_subject', |
|
602 | - 'openssl_csr_new', |
|
603 | - 'openssl_csr_sign', |
|
604 | - 'openssl_decrypt', |
|
605 | - 'openssl_dh_compute_key', |
|
606 | - 'openssl_digest', |
|
607 | - 'openssl_encrypt', |
|
608 | - 'openssl_open', |
|
609 | - 'openssl_pbkdf2', |
|
610 | - 'openssl_pkcs7_decrypt', |
|
611 | - 'openssl_pkcs7_encrypt', |
|
612 | - 'openssl_pkcs7_read', |
|
613 | - 'openssl_pkcs7_sign', |
|
614 | - 'openssl_pkcs12_export', |
|
615 | - 'openssl_pkcs12_export_to_file', |
|
616 | - 'openssl_pkcs12_read', |
|
617 | - 'openssl_pkey_export', |
|
618 | - 'openssl_pkey_export_to_file', |
|
619 | - 'openssl_pkey_get_private', |
|
620 | - 'openssl_pkey_get_public', |
|
621 | - 'openssl_pkey_new', |
|
622 | - 'openssl_private_decrypt', |
|
623 | - 'openssl_private_encrypt', |
|
624 | - 'openssl_public_decrypt', |
|
625 | - 'openssl_public_encrypt', |
|
626 | - 'openssl_random_pseudo_bytes', |
|
627 | - 'openssl_seal', |
|
628 | - 'openssl_sign', |
|
629 | - 'openssl_x509_export', |
|
630 | - 'openssl_x509_export_to_file', |
|
631 | - 'openssl_x509_fingerprint', |
|
632 | - 'openssl_x509_read', |
|
633 | - 'output_add_rewrite_var', |
|
634 | - 'output_reset_rewrite_vars', |
|
635 | - 'pack', |
|
636 | - 'parse_ini_file', |
|
637 | - 'parse_ini_string', |
|
638 | - 'parse_url', |
|
639 | - 'password_hash', |
|
640 | - 'pcntl_exec', |
|
641 | - 'pcntl_getpriority', |
|
642 | - 'pcntl_setpriority', |
|
643 | - 'pcntl_signal_dispatch', |
|
644 | - 'pcntl_sigprocmask', |
|
645 | - 'pcntl_strerror', |
|
646 | - 'PDF_activate_item', |
|
647 | - 'PDF_add_locallink', |
|
648 | - 'PDF_add_nameddest', |
|
649 | - 'PDF_add_note', |
|
650 | - 'PDF_add_pdflink', |
|
651 | - 'PDF_add_thumbnail', |
|
652 | - 'PDF_add_weblink', |
|
653 | - 'PDF_attach_file', |
|
654 | - 'PDF_begin_layer', |
|
655 | - 'PDF_begin_page', |
|
656 | - 'PDF_begin_page_ext', |
|
657 | - 'PDF_circle', |
|
658 | - 'PDF_clip', |
|
659 | - 'PDF_close', |
|
660 | - 'PDF_closepath', |
|
661 | - 'PDF_closepath_fill_stroke', |
|
662 | - 'PDF_closepath_stroke', |
|
663 | - 'PDF_close_pdi', |
|
664 | - 'PDF_close_pdi_page', |
|
665 | - 'PDF_concat', |
|
666 | - 'PDF_continue_text', |
|
667 | - 'PDF_curveto', |
|
668 | - 'PDF_delete', |
|
669 | - 'PDF_end_layer', |
|
670 | - 'PDF_end_page', |
|
671 | - 'PDF_end_page_ext', |
|
672 | - 'PDF_end_pattern', |
|
673 | - 'PDF_end_template', |
|
674 | - 'PDF_fill', |
|
675 | - 'PDF_fill_stroke', |
|
676 | - 'PDF_fit_image', |
|
677 | - 'PDF_fit_pdi_page', |
|
678 | - 'PDF_fit_textline', |
|
679 | - 'PDF_initgraphics', |
|
680 | - 'PDF_lineto', |
|
681 | - 'PDF_makespotcolor', |
|
682 | - 'PDF_moveto', |
|
683 | - 'PDF_open_file', |
|
684 | - 'PDF_place_image', |
|
685 | - 'PDF_place_pdi_page', |
|
686 | - 'PDF_rect', |
|
687 | - 'PDF_restore', |
|
688 | - 'PDF_rotate', |
|
689 | - 'PDF_save', |
|
690 | - 'PDF_scale', |
|
691 | - 'PDF_setcolor', |
|
692 | - 'PDF_setdash', |
|
693 | - 'PDF_setdashpattern', |
|
694 | - 'PDF_setflat', |
|
695 | - 'PDF_setfont', |
|
696 | - 'PDF_setgray', |
|
697 | - 'PDF_setgray_fill', |
|
698 | - 'PDF_setgray_stroke', |
|
699 | - 'PDF_setlinejoin', |
|
700 | - 'PDF_setlinewidth', |
|
701 | - 'PDF_setmatrix', |
|
702 | - 'PDF_setmiterlimit', |
|
703 | - 'PDF_setrgbcolor', |
|
704 | - 'PDF_setrgbcolor_fill', |
|
705 | - 'PDF_setrgbcolor_stroke', |
|
706 | - 'PDF_set_border_color', |
|
707 | - 'PDF_set_border_dash', |
|
708 | - 'PDF_set_border_style', |
|
709 | - 'PDF_set_info', |
|
710 | - 'PDF_set_layer_dependency', |
|
711 | - 'PDF_set_parameter', |
|
712 | - 'PDF_set_text_pos', |
|
713 | - 'PDF_set_value', |
|
714 | - 'PDF_show', |
|
715 | - 'PDF_show_xy', |
|
716 | - 'PDF_skew', |
|
717 | - 'PDF_stroke', |
|
718 | - 'pg_cancel_query', |
|
719 | - 'pg_client_encoding', |
|
720 | - 'pg_close', |
|
721 | - 'pg_connect', |
|
722 | - 'pg_connection_reset', |
|
723 | - 'pg_convert', |
|
724 | - 'pg_copy_from', |
|
725 | - 'pg_copy_to', |
|
726 | - 'pg_dbname', |
|
727 | - 'pg_delete', |
|
728 | - 'pg_end_copy', |
|
729 | - 'pg_execute', |
|
730 | - 'pg_field_name', |
|
731 | - 'pg_field_table', |
|
732 | - 'pg_field_type', |
|
733 | - 'pg_flush', |
|
734 | - 'pg_free_result', |
|
735 | - 'pg_host', |
|
736 | - 'pg_insert', |
|
737 | - 'pg_last_error', |
|
738 | - 'pg_last_notice', |
|
739 | - 'pg_last_oid', |
|
740 | - 'pg_lo_close', |
|
741 | - 'pg_lo_export', |
|
742 | - 'pg_lo_import', |
|
743 | - 'pg_lo_open', |
|
744 | - 'pg_lo_read', |
|
745 | - 'pg_lo_read_all', |
|
746 | - 'pg_lo_seek', |
|
747 | - 'pg_lo_truncate', |
|
748 | - 'pg_lo_unlink', |
|
749 | - 'pg_lo_write', |
|
750 | - 'pg_meta_data', |
|
751 | - 'pg_options', |
|
752 | - 'pg_parameter_status', |
|
753 | - 'pg_pconnect', |
|
754 | - 'pg_ping', |
|
755 | - 'pg_port', |
|
756 | - 'pg_prepare', |
|
757 | - 'pg_put_line', |
|
758 | - 'pg_query', |
|
759 | - 'pg_query_params', |
|
760 | - 'pg_result_error_field', |
|
761 | - 'pg_result_seek', |
|
762 | - 'pg_select', |
|
763 | - 'pg_send_execute', |
|
764 | - 'pg_send_prepare', |
|
765 | - 'pg_send_query', |
|
766 | - 'pg_send_query_params', |
|
767 | - 'pg_socket', |
|
768 | - 'pg_trace', |
|
769 | - 'pg_tty', |
|
770 | - 'pg_update', |
|
771 | - 'pg_version', |
|
772 | - 'phpcredits', |
|
773 | - 'phpinfo', |
|
774 | - 'png2wbmp', |
|
775 | - 'posix_access', |
|
776 | - 'posix_getgrnam', |
|
777 | - 'posix_getpgid', |
|
778 | - 'posix_initgroups', |
|
779 | - 'posix_kill', |
|
780 | - 'posix_mkfifo', |
|
781 | - 'posix_mknod', |
|
782 | - 'posix_setegid', |
|
783 | - 'posix_seteuid', |
|
784 | - 'posix_setgid', |
|
785 | - 'posix_setpgid', |
|
786 | - 'posix_setrlimit', |
|
787 | - 'posix_setuid', |
|
788 | - 'preg_match', |
|
789 | - 'preg_match_all', |
|
790 | - 'preg_replace', |
|
791 | - 'preg_split', |
|
792 | - 'proc_get_status', |
|
793 | - 'proc_nice', |
|
794 | - 'pspell_add_to_personal', |
|
795 | - 'pspell_add_to_session', |
|
796 | - 'pspell_clear_session', |
|
797 | - 'pspell_config_create', |
|
798 | - 'pspell_config_data_dir', |
|
799 | - 'pspell_config_dict_dir', |
|
800 | - 'pspell_config_ignore', |
|
801 | - 'pspell_config_mode', |
|
802 | - 'pspell_config_personal', |
|
803 | - 'pspell_config_repl', |
|
804 | - 'pspell_config_runtogether', |
|
805 | - 'pspell_config_save_repl', |
|
806 | - 'pspell_new', |
|
807 | - 'pspell_new_config', |
|
808 | - 'pspell_save_wordlist', |
|
809 | - 'pspell_store_replacement', |
|
810 | - 'ps_add_launchlink', |
|
811 | - 'ps_add_locallink', |
|
812 | - 'ps_add_note', |
|
813 | - 'ps_add_pdflink', |
|
814 | - 'ps_add_weblink', |
|
815 | - 'ps_arc', |
|
816 | - 'ps_arcn', |
|
817 | - 'ps_begin_page', |
|
818 | - 'ps_begin_pattern', |
|
819 | - 'ps_begin_template', |
|
820 | - 'ps_circle', |
|
821 | - 'ps_clip', |
|
822 | - 'ps_close', |
|
823 | - 'ps_closepath', |
|
824 | - 'ps_closepath_stroke', |
|
825 | - 'ps_close_image', |
|
826 | - 'ps_continue_text', |
|
827 | - 'ps_curveto', |
|
828 | - 'ps_delete', |
|
829 | - 'ps_end_page', |
|
830 | - 'ps_end_pattern', |
|
831 | - 'ps_end_template', |
|
832 | - 'ps_fill', |
|
833 | - 'ps_fill_stroke', |
|
834 | - 'ps_get_parameter', |
|
835 | - 'ps_hyphenate', |
|
836 | - 'ps_include_file', |
|
837 | - 'ps_lineto', |
|
838 | - 'ps_moveto', |
|
839 | - 'ps_new', |
|
840 | - 'ps_open_file', |
|
841 | - 'ps_place_image', |
|
842 | - 'ps_rect', |
|
843 | - 'ps_restore', |
|
844 | - 'ps_rotate', |
|
845 | - 'ps_save', |
|
846 | - 'ps_scale', |
|
847 | - 'ps_setcolor', |
|
848 | - 'ps_setdash', |
|
849 | - 'ps_setflat', |
|
850 | - 'ps_setfont', |
|
851 | - 'ps_setgray', |
|
852 | - 'ps_setlinecap', |
|
853 | - 'ps_setlinejoin', |
|
854 | - 'ps_setlinewidth', |
|
855 | - 'ps_setmiterlimit', |
|
856 | - 'ps_setoverprintmode', |
|
857 | - 'ps_setpolydash', |
|
858 | - 'ps_set_border_color', |
|
859 | - 'ps_set_border_dash', |
|
860 | - 'ps_set_border_style', |
|
861 | - 'ps_set_info', |
|
862 | - 'ps_set_parameter', |
|
863 | - 'ps_set_text_pos', |
|
864 | - 'ps_set_value', |
|
865 | - 'ps_shading', |
|
866 | - 'ps_shading_pattern', |
|
867 | - 'ps_shfill', |
|
868 | - 'ps_show', |
|
869 | - 'ps_show2', |
|
870 | - 'ps_show_xy', |
|
871 | - 'ps_show_xy2', |
|
872 | - 'ps_stroke', |
|
873 | - 'ps_symbol', |
|
874 | - 'ps_translate', |
|
875 | - 'putenv', |
|
876 | - 'readfile', |
|
877 | - 'readgzfile', |
|
878 | - 'readline_add_history', |
|
879 | - 'readline_callback_handler_install', |
|
880 | - 'readline_clear_history', |
|
881 | - 'readline_completion_function', |
|
882 | - 'readline_read_history', |
|
883 | - 'readline_write_history', |
|
884 | - 'readlink', |
|
885 | - 'realpath', |
|
886 | - 'register_tick_function', |
|
887 | - 'rename', |
|
888 | - 'rewind', |
|
889 | - 'rewinddir', |
|
890 | - 'rmdir', |
|
891 | - 'rpmaddtag', |
|
892 | - 'rrd_create', |
|
893 | - 'rsort', |
|
894 | - 'sapi_windows_cp_conv', |
|
895 | - 'sapi_windows_cp_set', |
|
896 | - 'sapi_windows_generate_ctrl_event', |
|
897 | - 'sapi_windows_vt100_support', |
|
898 | - 'scandir', |
|
899 | - 'sem_acquire', |
|
900 | - 'sem_get', |
|
901 | - 'sem_release', |
|
902 | - 'sem_remove', |
|
903 | - 'session_abort', |
|
904 | - 'session_decode', |
|
905 | - 'session_destroy', |
|
906 | - 'session_regenerate_id', |
|
907 | - 'session_reset', |
|
908 | - 'session_unset', |
|
909 | - 'session_write_close', |
|
910 | - 'settype', |
|
911 | - 'set_include_path', |
|
912 | - 'set_time_limit', |
|
913 | - 'sha1_file', |
|
914 | - 'shmop_delete', |
|
915 | - 'shmop_read', |
|
916 | - 'shmop_write', |
|
917 | - 'shm_put_var', |
|
918 | - 'shm_remove', |
|
919 | - 'shm_remove_var', |
|
920 | - 'shuffle', |
|
921 | - 'simplexml_import_dom', |
|
922 | - 'simplexml_load_file', |
|
923 | - 'simplexml_load_string', |
|
924 | - 'sleep', |
|
925 | - 'socket_accept', |
|
926 | - 'socket_addrinfo_bind', |
|
927 | - 'socket_addrinfo_connect', |
|
928 | - 'socket_bind', |
|
929 | - 'socket_connect', |
|
930 | - 'socket_create', |
|
931 | - 'socket_create_listen', |
|
932 | - 'socket_create_pair', |
|
933 | - 'socket_export_stream', |
|
934 | - 'socket_getpeername', |
|
935 | - 'socket_getsockname', |
|
936 | - 'socket_get_option', |
|
937 | - 'socket_import_stream', |
|
938 | - 'socket_listen', |
|
939 | - 'socket_read', |
|
940 | - 'socket_send', |
|
941 | - 'socket_sendmsg', |
|
942 | - 'socket_sendto', |
|
943 | - 'socket_set_block', |
|
944 | - 'socket_set_nonblock', |
|
945 | - 'socket_set_option', |
|
946 | - 'socket_shutdown', |
|
947 | - 'socket_write', |
|
948 | - 'socket_wsaprotocol_info_export', |
|
949 | - 'socket_wsaprotocol_info_import', |
|
950 | - 'socket_wsaprotocol_info_release', |
|
951 | - 'sodium_crypto_pwhash', |
|
952 | - 'sodium_crypto_pwhash_str', |
|
953 | - 'solr_get_version', |
|
954 | - 'sort', |
|
955 | - 'soundex', |
|
956 | - 'spl_autoload_register', |
|
957 | - 'spl_autoload_unregister', |
|
958 | - 'sprintf', |
|
959 | - 'sqlsrv_begin_transaction', |
|
960 | - 'sqlsrv_cancel', |
|
961 | - 'sqlsrv_client_info', |
|
962 | - 'sqlsrv_close', |
|
963 | - 'sqlsrv_commit', |
|
964 | - 'sqlsrv_configure', |
|
965 | - 'sqlsrv_execute', |
|
966 | - 'sqlsrv_free_stmt', |
|
967 | - 'sqlsrv_get_field', |
|
968 | - 'sqlsrv_next_result', |
|
969 | - 'sqlsrv_num_fields', |
|
970 | - 'sqlsrv_num_rows', |
|
971 | - 'sqlsrv_prepare', |
|
972 | - 'sqlsrv_query', |
|
973 | - 'sqlsrv_rollback', |
|
974 | - 'ssdeep_fuzzy_compare', |
|
975 | - 'ssdeep_fuzzy_hash', |
|
976 | - 'ssdeep_fuzzy_hash_filename', |
|
977 | - 'ssh2_auth_agent', |
|
978 | - 'ssh2_auth_hostbased_file', |
|
979 | - 'ssh2_auth_password', |
|
980 | - 'ssh2_auth_pubkey_file', |
|
981 | - 'ssh2_connect', |
|
982 | - 'ssh2_disconnect', |
|
983 | - 'ssh2_exec', |
|
984 | - 'ssh2_publickey_add', |
|
985 | - 'ssh2_publickey_init', |
|
986 | - 'ssh2_publickey_remove', |
|
987 | - 'ssh2_scp_recv', |
|
988 | - 'ssh2_scp_send', |
|
989 | - 'ssh2_sftp', |
|
990 | - 'ssh2_sftp_chmod', |
|
991 | - 'ssh2_sftp_mkdir', |
|
992 | - 'ssh2_sftp_rename', |
|
993 | - 'ssh2_sftp_rmdir', |
|
994 | - 'ssh2_sftp_symlink', |
|
995 | - 'ssh2_sftp_unlink', |
|
996 | - 'stream_context_set_params', |
|
997 | - 'stream_copy_to_stream', |
|
998 | - 'stream_filter_append', |
|
999 | - 'stream_filter_prepend', |
|
1000 | - 'stream_filter_register', |
|
1001 | - 'stream_filter_remove', |
|
1002 | - 'stream_get_contents', |
|
1003 | - 'stream_isatty', |
|
1004 | - 'stream_resolve_include_path', |
|
1005 | - 'stream_set_blocking', |
|
1006 | - 'stream_set_timeout', |
|
1007 | - 'stream_socket_accept', |
|
1008 | - 'stream_socket_client', |
|
1009 | - 'stream_socket_pair', |
|
1010 | - 'stream_socket_server', |
|
1011 | - 'stream_socket_shutdown', |
|
1012 | - 'stream_supports_lock', |
|
1013 | - 'stream_wrapper_register', |
|
1014 | - 'stream_wrapper_restore', |
|
1015 | - 'stream_wrapper_unregister', |
|
1016 | - 'strptime', |
|
1017 | - 'strtotime', |
|
1018 | - 'substr', |
|
1019 | - 'swoole_async_write', |
|
1020 | - 'swoole_async_writefile', |
|
1021 | - 'swoole_event_defer', |
|
1022 | - 'swoole_event_del', |
|
1023 | - 'swoole_event_write', |
|
1024 | - 'symlink', |
|
1025 | - 'syslog', |
|
1026 | - 'system', |
|
1027 | - 'tempnam', |
|
1028 | - 'timezone_name_from_abbr', |
|
1029 | - 'time_nanosleep', |
|
1030 | - 'time_sleep_until', |
|
1031 | - 'tmpfile', |
|
1032 | - 'touch', |
|
1033 | - 'uasort', |
|
1034 | - 'uksort', |
|
1035 | - 'unlink', |
|
1036 | - 'unpack', |
|
1037 | - 'uopz_extend', |
|
1038 | - 'uopz_implement', |
|
1039 | - 'usort', |
|
1040 | - 'virtual', |
|
1041 | - 'vsprintf', |
|
1042 | - 'xdiff_file_bdiff', |
|
1043 | - 'xdiff_file_bpatch', |
|
1044 | - 'xdiff_file_diff', |
|
1045 | - 'xdiff_file_diff_binary', |
|
1046 | - 'xdiff_file_patch_binary', |
|
1047 | - 'xdiff_file_rabdiff', |
|
1048 | - 'xdiff_string_bpatch', |
|
1049 | - 'xdiff_string_patch', |
|
1050 | - 'xdiff_string_patch_binary', |
|
1051 | - 'xmlrpc_set_type', |
|
1052 | - 'xml_parser_create', |
|
1053 | - 'xml_parser_create_ns', |
|
1054 | - 'xml_set_object', |
|
1055 | - 'yaml_parse', |
|
1056 | - 'yaml_parse_file', |
|
1057 | - 'yaml_parse_url', |
|
1058 | - 'yaz_ccl_parse', |
|
1059 | - 'yaz_close', |
|
1060 | - 'yaz_connect', |
|
1061 | - 'yaz_database', |
|
1062 | - 'yaz_element', |
|
1063 | - 'yaz_present', |
|
1064 | - 'yaz_search', |
|
1065 | - 'yaz_wait', |
|
1066 | - 'zip_entry_close', |
|
1067 | - 'zip_entry_open', |
|
1068 | - 'zip_entry_read', |
|
1069 | - 'zlib_decode', |
|
4 | + 'apache_getenv', |
|
5 | + 'apache_get_version', |
|
6 | + 'apache_request_headers', |
|
7 | + 'apache_reset_timeout', |
|
8 | + 'apache_response_headers', |
|
9 | + 'apache_setenv', |
|
10 | + 'apcu_cache_info', |
|
11 | + 'apcu_cas', |
|
12 | + 'apcu_dec', |
|
13 | + 'apcu_fetch', |
|
14 | + 'apcu_inc', |
|
15 | + 'apcu_sma_info', |
|
16 | + 'apc_fetch', |
|
17 | + 'array_combine', |
|
18 | + 'array_flip', |
|
19 | + 'array_replace', |
|
20 | + 'array_replace_recursive', |
|
21 | + 'array_walk_recursive', |
|
22 | + 'arsort', |
|
23 | + 'asort', |
|
24 | + 'base64_decode', |
|
25 | + 'bzclose', |
|
26 | + 'bzflush', |
|
27 | + 'bzread', |
|
28 | + 'bzwrite', |
|
29 | + 'chdir', |
|
30 | + 'chgrp', |
|
31 | + 'chmod', |
|
32 | + 'chown', |
|
33 | + 'chroot', |
|
34 | + 'class_alias', |
|
35 | + 'class_implements', |
|
36 | + 'class_parents', |
|
37 | + 'class_uses', |
|
38 | + 'cli_set_process_title', |
|
39 | + 'closelog', |
|
40 | + 'com_event_sink', |
|
41 | + 'com_load_typelib', |
|
42 | + 'com_print_typeinfo', |
|
43 | + 'convert_uudecode', |
|
44 | + 'convert_uuencode', |
|
45 | + 'copy', |
|
46 | + 'create_function', |
|
47 | + 'cubrid_free_result', |
|
48 | + 'cubrid_get_charset', |
|
49 | + 'cubrid_get_client_info', |
|
50 | + 'cubrid_get_db_parameter', |
|
51 | + 'cubrid_get_server_info', |
|
52 | + 'cubrid_insert_id', |
|
53 | + 'cubrid_lob2_new', |
|
54 | + 'cubrid_lob2_size', |
|
55 | + 'cubrid_lob2_size64', |
|
56 | + 'cubrid_lob2_tell', |
|
57 | + 'cubrid_lob2_tell64', |
|
58 | + 'cubrid_set_db_parameter', |
|
59 | + 'curl_escape', |
|
60 | + 'curl_exec', |
|
61 | + 'curl_getinfo', |
|
62 | + 'curl_init', |
|
63 | + 'curl_multi_errno', |
|
64 | + 'curl_multi_info_read', |
|
65 | + 'curl_multi_init', |
|
66 | + 'curl_setopt', |
|
67 | + 'curl_share_errno', |
|
68 | + 'curl_share_setopt', |
|
69 | + 'curl_unescape', |
|
70 | + 'date', |
|
71 | + 'date_parse', |
|
72 | + 'date_parse_from_format', |
|
73 | + 'date_sunrise', |
|
74 | + 'date_sunset', |
|
75 | + 'date_sun_info', |
|
76 | + 'db2_autocommit', |
|
77 | + 'db2_bind_param', |
|
78 | + 'db2_client_info', |
|
79 | + 'db2_close', |
|
80 | + 'db2_commit', |
|
81 | + 'db2_execute', |
|
82 | + 'db2_free_result', |
|
83 | + 'db2_free_stmt', |
|
84 | + 'db2_get_option', |
|
85 | + 'db2_pclose', |
|
86 | + 'db2_rollback', |
|
87 | + 'db2_server_info', |
|
88 | + 'db2_set_option', |
|
89 | + 'define', |
|
90 | + 'deflate_add', |
|
91 | + 'deflate_init', |
|
92 | + 'disk_free_space', |
|
93 | + 'disk_total_space', |
|
94 | + 'dl', |
|
95 | + 'dns_get_record', |
|
96 | + 'eio_busy', |
|
97 | + 'eio_chmod', |
|
98 | + 'eio_chown', |
|
99 | + 'eio_close', |
|
100 | + 'eio_custom', |
|
101 | + 'eio_dup2', |
|
102 | + 'eio_event_loop', |
|
103 | + 'eio_fallocate', |
|
104 | + 'eio_fchmod', |
|
105 | + 'eio_fdatasync', |
|
106 | + 'eio_fstat', |
|
107 | + 'eio_fstatvfs', |
|
108 | + 'eio_fsync', |
|
109 | + 'eio_ftruncate', |
|
110 | + 'eio_futime', |
|
111 | + 'eio_grp', |
|
112 | + 'eio_lstat', |
|
113 | + 'eio_mkdir', |
|
114 | + 'eio_mknod', |
|
115 | + 'eio_nop', |
|
116 | + 'eio_readahead', |
|
117 | + 'eio_readdir', |
|
118 | + 'eio_readlink', |
|
119 | + 'eio_rename', |
|
120 | + 'eio_rmdir', |
|
121 | + 'eio_seek', |
|
122 | + 'eio_sendfile', |
|
123 | + 'eio_stat', |
|
124 | + 'eio_statvfs', |
|
125 | + 'eio_symlink', |
|
126 | + 'eio_sync', |
|
127 | + 'eio_syncfs', |
|
128 | + 'eio_sync_file_range', |
|
129 | + 'eio_truncate', |
|
130 | + 'eio_unlink', |
|
131 | + 'eio_utime', |
|
132 | + 'eio_write', |
|
133 | + 'error_log', |
|
134 | + 'fastcgi_finish_request', |
|
135 | + 'fbird_blob_cancel', |
|
136 | + 'fclose', |
|
137 | + 'fflush', |
|
138 | + 'file', |
|
139 | + 'fileatime', |
|
140 | + 'filectime', |
|
141 | + 'fileinode', |
|
142 | + 'filemtime', |
|
143 | + 'fileowner', |
|
144 | + 'filesize', |
|
145 | + 'file_get_contents', |
|
146 | + 'file_put_contents', |
|
147 | + 'filter_input_array', |
|
148 | + 'filter_var_array', |
|
149 | + 'finfo_close', |
|
150 | + 'finfo_open', |
|
151 | + 'flock', |
|
152 | + 'fopen', |
|
153 | + 'fputcsv', |
|
154 | + 'fread', |
|
155 | + 'fsockopen', |
|
156 | + 'ftp_alloc', |
|
157 | + 'ftp_append', |
|
158 | + 'ftp_cdup', |
|
159 | + 'ftp_chdir', |
|
160 | + 'ftp_chmod', |
|
161 | + 'ftp_close', |
|
162 | + 'ftp_connect', |
|
163 | + 'ftp_delete', |
|
164 | + 'ftp_fget', |
|
165 | + 'ftp_fput', |
|
166 | + 'ftp_get', |
|
167 | + 'ftp_login', |
|
168 | + 'ftp_mkdir', |
|
169 | + 'ftp_mlsd', |
|
170 | + 'ftp_nlist', |
|
171 | + 'ftp_pasv', |
|
172 | + 'ftp_put', |
|
173 | + 'ftp_pwd', |
|
174 | + 'ftp_rename', |
|
175 | + 'ftp_rmdir', |
|
176 | + 'ftp_site', |
|
177 | + 'ftp_ssl_connect', |
|
178 | + 'ftp_systype', |
|
179 | + 'ftruncate', |
|
180 | + 'fwrite', |
|
181 | + 'getallheaders', |
|
182 | + 'getcwd', |
|
183 | + 'gethostname', |
|
184 | + 'getimagesize', |
|
185 | + 'getlastmod', |
|
186 | + 'getmygid', |
|
187 | + 'getmyinode', |
|
188 | + 'getmypid', |
|
189 | + 'getmyuid', |
|
190 | + 'getopt', |
|
191 | + 'getprotobyname', |
|
192 | + 'getprotobynumber', |
|
193 | + 'get_headers', |
|
194 | + 'glob', |
|
195 | + 'gmdate', |
|
196 | + 'gmp_binomial', |
|
197 | + 'gmp_export', |
|
198 | + 'gmp_import', |
|
199 | + 'gmp_random_seed', |
|
200 | + 'gnupg_adddecryptkey', |
|
201 | + 'gnupg_addencryptkey', |
|
202 | + 'gnupg_addsignkey', |
|
203 | + 'gnupg_cleardecryptkeys', |
|
204 | + 'gnupg_clearencryptkeys', |
|
205 | + 'gnupg_clearsignkeys', |
|
206 | + 'gnupg_setarmor', |
|
207 | + 'gnupg_setsignmode', |
|
208 | + 'gzclose', |
|
209 | + 'gzcompress', |
|
210 | + 'gzdecode', |
|
211 | + 'gzdeflate', |
|
212 | + 'gzencode', |
|
213 | + 'gzgets', |
|
214 | + 'gzgetss', |
|
215 | + 'gzinflate', |
|
216 | + 'gzpassthru', |
|
217 | + 'gzrewind', |
|
218 | + 'gzuncompress', |
|
219 | + 'hash_hkdf', |
|
220 | + 'hash_update_file', |
|
221 | + 'header_register_callback', |
|
222 | + 'hex2bin', |
|
223 | + 'highlight_file', |
|
224 | + 'highlight_string', |
|
225 | + 'ibase_add_user', |
|
226 | + 'ibase_backup', |
|
227 | + 'ibase_blob_cancel', |
|
228 | + 'ibase_blob_create', |
|
229 | + 'ibase_blob_get', |
|
230 | + 'ibase_close', |
|
231 | + 'ibase_commit', |
|
232 | + 'ibase_commit_ret', |
|
233 | + 'ibase_connect', |
|
234 | + 'ibase_delete_user', |
|
235 | + 'ibase_drop_db', |
|
236 | + 'ibase_free_event_handler', |
|
237 | + 'ibase_free_query', |
|
238 | + 'ibase_free_result', |
|
239 | + 'ibase_maintain_db', |
|
240 | + 'ibase_modify_user', |
|
241 | + 'ibase_name_result', |
|
242 | + 'ibase_pconnect', |
|
243 | + 'ibase_restore', |
|
244 | + 'ibase_rollback', |
|
245 | + 'ibase_rollback_ret', |
|
246 | + 'ibase_service_attach', |
|
247 | + 'ibase_service_detach', |
|
248 | + 'iconv', |
|
249 | + 'iconv_get_encoding', |
|
250 | + 'iconv_set_encoding', |
|
251 | + 'image2wbmp', |
|
252 | + 'imageaffine', |
|
253 | + 'imageaffinematrixconcat', |
|
254 | + 'imageaffinematrixget', |
|
255 | + 'imagealphablending', |
|
256 | + 'imageantialias', |
|
257 | + 'imagearc', |
|
258 | + 'imagebmp', |
|
259 | + 'imagechar', |
|
260 | + 'imagecharup', |
|
261 | + 'imagecolorat', |
|
262 | + 'imagecolordeallocate', |
|
263 | + 'imagecolormatch', |
|
264 | + 'imageconvolution', |
|
265 | + 'imagecopy', |
|
266 | + 'imagecopymerge', |
|
267 | + 'imagecopymergegray', |
|
268 | + 'imagecopyresampled', |
|
269 | + 'imagecopyresized', |
|
270 | + 'imagecreate', |
|
271 | + 'imagecreatefrombmp', |
|
272 | + 'imagecreatefromgd', |
|
273 | + 'imagecreatefromgd2', |
|
274 | + 'imagecreatefromgd2part', |
|
275 | + 'imagecreatefromgif', |
|
276 | + 'imagecreatefromjpeg', |
|
277 | + 'imagecreatefrompng', |
|
278 | + 'imagecreatefromwbmp', |
|
279 | + 'imagecreatefromwebp', |
|
280 | + 'imagecreatefromxbm', |
|
281 | + 'imagecreatefromxpm', |
|
282 | + 'imagecreatetruecolor', |
|
283 | + 'imagecrop', |
|
284 | + 'imagecropauto', |
|
285 | + 'imagedashedline', |
|
286 | + 'imagedestroy', |
|
287 | + 'imageellipse', |
|
288 | + 'imagefill', |
|
289 | + 'imagefilledarc', |
|
290 | + 'imagefilledellipse', |
|
291 | + 'imagefilledpolygon', |
|
292 | + 'imagefilledrectangle', |
|
293 | + 'imagefilltoborder', |
|
294 | + 'imagefilter', |
|
295 | + 'imageflip', |
|
296 | + 'imagegammacorrect', |
|
297 | + 'imagegd', |
|
298 | + 'imagegd2', |
|
299 | + 'imagegif', |
|
300 | + 'imagegrabscreen', |
|
301 | + 'imagegrabwindow', |
|
302 | + 'imagejpeg', |
|
303 | + 'imagelayereffect', |
|
304 | + 'imageline', |
|
305 | + 'imageloadfont', |
|
306 | + 'imageopenpolygon', |
|
307 | + 'imagepng', |
|
308 | + 'imagepolygon', |
|
309 | + 'imagerectangle', |
|
310 | + 'imagerotate', |
|
311 | + 'imagesavealpha', |
|
312 | + 'imagescale', |
|
313 | + 'imagesetbrush', |
|
314 | + 'imagesetclip', |
|
315 | + 'imagesetinterpolation', |
|
316 | + 'imagesetpixel', |
|
317 | + 'imagesetstyle', |
|
318 | + 'imagesetthickness', |
|
319 | + 'imagesettile', |
|
320 | + 'imagestring', |
|
321 | + 'imagestringup', |
|
322 | + 'imagesx', |
|
323 | + 'imagesy', |
|
324 | + 'imagetruecolortopalette', |
|
325 | + 'imagettfbbox', |
|
326 | + 'imagettftext', |
|
327 | + 'imagewbmp', |
|
328 | + 'imagewebp', |
|
329 | + 'imagexbm', |
|
330 | + 'imap_append', |
|
331 | + 'imap_check', |
|
332 | + 'imap_clearflag_full', |
|
333 | + 'imap_close', |
|
334 | + 'imap_createmailbox', |
|
335 | + 'imap_deletemailbox', |
|
336 | + 'imap_fetchstructure', |
|
337 | + 'imap_gc', |
|
338 | + 'imap_headerinfo', |
|
339 | + 'imap_mail', |
|
340 | + 'imap_mailboxmsginfo', |
|
341 | + 'imap_mail_compose', |
|
342 | + 'imap_mail_copy', |
|
343 | + 'imap_mail_move', |
|
344 | + 'imap_mutf7_to_utf8', |
|
345 | + 'imap_num_msg', |
|
346 | + 'imap_open', |
|
347 | + 'imap_renamemailbox', |
|
348 | + 'imap_savebody', |
|
349 | + 'imap_setacl', |
|
350 | + 'imap_setflag_full', |
|
351 | + 'imap_set_quota', |
|
352 | + 'imap_sort', |
|
353 | + 'imap_subscribe', |
|
354 | + 'imap_thread', |
|
355 | + 'imap_timeout', |
|
356 | + 'imap_undelete', |
|
357 | + 'imap_unsubscribe', |
|
358 | + 'imap_utf8_to_mutf7', |
|
359 | + 'inet_ntop', |
|
360 | + 'inflate_add', |
|
361 | + 'inflate_get_read_len', |
|
362 | + 'inflate_get_status', |
|
363 | + 'inflate_init', |
|
364 | + 'ingres_autocommit', |
|
365 | + 'ingres_close', |
|
366 | + 'ingres_commit', |
|
367 | + 'ingres_connect', |
|
368 | + 'ingres_execute', |
|
369 | + 'ingres_field_name', |
|
370 | + 'ingres_field_type', |
|
371 | + 'ingres_free_result', |
|
372 | + 'ingres_pconnect', |
|
373 | + 'ingres_result_seek', |
|
374 | + 'ingres_rollback', |
|
375 | + 'ingres_set_environment', |
|
376 | + 'ini_get', |
|
377 | + 'ini_set', |
|
378 | + 'inotify_init', |
|
379 | + 'inotify_rm_watch', |
|
380 | + 'iptcembed', |
|
381 | + 'iptcparse', |
|
382 | + 'jdtounix', |
|
383 | + 'jpeg2wbmp', |
|
384 | + 'json_decode', |
|
385 | + 'json_encode', |
|
386 | + 'json_last_error_msg', |
|
387 | + 'krsort', |
|
388 | + 'ksort', |
|
389 | + 'lchgrp', |
|
390 | + 'lchown', |
|
391 | + 'ldap_add', |
|
392 | + 'ldap_add_ext', |
|
393 | + 'ldap_bind', |
|
394 | + 'ldap_bind_ext', |
|
395 | + 'ldap_control_paged_result', |
|
396 | + 'ldap_control_paged_result_response', |
|
397 | + 'ldap_count_entries', |
|
398 | + 'ldap_delete', |
|
399 | + 'ldap_delete_ext', |
|
400 | + 'ldap_exop', |
|
401 | + 'ldap_exop_passwd', |
|
402 | + 'ldap_exop_whoami', |
|
403 | + 'ldap_explode_dn', |
|
404 | + 'ldap_first_attribute', |
|
405 | + 'ldap_first_entry', |
|
406 | + 'ldap_free_result', |
|
407 | + 'ldap_get_attributes', |
|
408 | + 'ldap_get_dn', |
|
409 | + 'ldap_get_entries', |
|
410 | + 'ldap_get_option', |
|
411 | + 'ldap_get_values', |
|
412 | + 'ldap_get_values_len', |
|
413 | + 'ldap_list', |
|
414 | + 'ldap_modify_batch', |
|
415 | + 'ldap_mod_add', |
|
416 | + 'ldap_mod_add_ext', |
|
417 | + 'ldap_mod_del', |
|
418 | + 'ldap_mod_del_ext', |
|
419 | + 'ldap_mod_replace', |
|
420 | + 'ldap_mod_replace_ext', |
|
421 | + 'ldap_next_attribute', |
|
422 | + 'ldap_parse_exop', |
|
423 | + 'ldap_parse_result', |
|
424 | + 'ldap_read', |
|
425 | + 'ldap_rename', |
|
426 | + 'ldap_rename_ext', |
|
427 | + 'ldap_sasl_bind', |
|
428 | + 'ldap_search', |
|
429 | + 'ldap_set_option', |
|
430 | + 'ldap_unbind', |
|
431 | + 'libxml_get_last_error', |
|
432 | + 'libxml_set_external_entity_loader', |
|
433 | + 'link', |
|
434 | + 'lzf_compress', |
|
435 | + 'lzf_decompress', |
|
436 | + 'mailparse_msg_extract_part_file', |
|
437 | + 'mailparse_msg_free', |
|
438 | + 'mailparse_msg_parse', |
|
439 | + 'mailparse_msg_parse_file', |
|
440 | + 'mailparse_stream_encode', |
|
441 | + 'mb_chr', |
|
442 | + 'mb_detect_order', |
|
443 | + 'mb_encoding_aliases', |
|
444 | + 'mb_eregi_replace', |
|
445 | + 'mb_ereg_replace', |
|
446 | + 'mb_ereg_replace_callback', |
|
447 | + 'mb_ereg_search_getregs', |
|
448 | + 'mb_ereg_search_init', |
|
449 | + 'mb_ereg_search_regs', |
|
450 | + 'mb_ereg_search_setpos', |
|
451 | + 'mb_http_output', |
|
452 | + 'mb_internal_encoding', |
|
453 | + 'mb_ord', |
|
454 | + 'mb_parse_str', |
|
455 | + 'mb_regex_encoding', |
|
456 | + 'mb_send_mail', |
|
457 | + 'mb_split', |
|
458 | + 'mb_str_split', |
|
459 | + 'md5_file', |
|
460 | + 'metaphone', |
|
461 | + 'mime_content_type', |
|
462 | + 'mkdir', |
|
463 | + 'mktime', |
|
464 | + 'msg_queue_exists', |
|
465 | + 'msg_receive', |
|
466 | + 'msg_remove_queue', |
|
467 | + 'msg_send', |
|
468 | + 'msg_set_queue', |
|
469 | + 'msql_affected_rows', |
|
470 | + 'msql_close', |
|
471 | + 'msql_connect', |
|
472 | + 'msql_create_db', |
|
473 | + 'msql_data_seek', |
|
474 | + 'msql_db_query', |
|
475 | + 'msql_drop_db', |
|
476 | + 'msql_field_len', |
|
477 | + 'msql_field_name', |
|
478 | + 'msql_field_seek', |
|
479 | + 'msql_field_table', |
|
480 | + 'msql_field_type', |
|
481 | + 'msql_free_result', |
|
482 | + 'msql_pconnect', |
|
483 | + 'msql_query', |
|
484 | + 'msql_select_db', |
|
485 | + 'mysqli_get_cache_stats', |
|
486 | + 'mysqli_get_client_stats', |
|
487 | + 'mysqlnd_ms_dump_servers', |
|
488 | + 'mysqlnd_ms_fabric_select_global', |
|
489 | + 'mysqlnd_ms_fabric_select_shard', |
|
490 | + 'mysqlnd_ms_get_last_used_connection', |
|
491 | + 'mysqlnd_qc_clear_cache', |
|
492 | + 'mysqlnd_qc_set_is_select', |
|
493 | + 'mysqlnd_qc_set_storage_handler', |
|
494 | + 'mysql_close', |
|
495 | + 'mysql_connect', |
|
496 | + 'mysql_create_db', |
|
497 | + 'mysql_data_seek', |
|
498 | + 'mysql_db_name', |
|
499 | + 'mysql_db_query', |
|
500 | + 'mysql_drop_db', |
|
501 | + 'mysql_fetch_lengths', |
|
502 | + 'mysql_field_flags', |
|
503 | + 'mysql_field_len', |
|
504 | + 'mysql_field_name', |
|
505 | + 'mysql_field_seek', |
|
506 | + 'mysql_free_result', |
|
507 | + 'mysql_get_host_info', |
|
508 | + 'mysql_get_proto_info', |
|
509 | + 'mysql_get_server_info', |
|
510 | + 'mysql_info', |
|
511 | + 'mysql_list_dbs', |
|
512 | + 'mysql_list_fields', |
|
513 | + 'mysql_list_processes', |
|
514 | + 'mysql_list_tables', |
|
515 | + 'mysql_num_fields', |
|
516 | + 'mysql_num_rows', |
|
517 | + 'mysql_query', |
|
518 | + 'mysql_real_escape_string', |
|
519 | + 'mysql_result', |
|
520 | + 'mysql_select_db', |
|
521 | + 'mysql_set_charset', |
|
522 | + 'mysql_tablename', |
|
523 | + 'mysql_thread_id', |
|
524 | + 'mysql_unbuffered_query', |
|
525 | + 'natcasesort', |
|
526 | + 'natsort', |
|
527 | + 'ob_end_clean', |
|
528 | + 'ob_end_flush', |
|
529 | + 'oci_bind_array_by_name', |
|
530 | + 'oci_bind_by_name', |
|
531 | + 'oci_cancel', |
|
532 | + 'oci_close', |
|
533 | + 'oci_commit', |
|
534 | + 'oci_connect', |
|
535 | + 'oci_define_by_name', |
|
536 | + 'oci_execute', |
|
537 | + 'oci_fetch_all', |
|
538 | + 'oci_field_name', |
|
539 | + 'oci_field_precision', |
|
540 | + 'oci_field_scale', |
|
541 | + 'oci_field_size', |
|
542 | + 'oci_field_type', |
|
543 | + 'oci_field_type_raw', |
|
544 | + 'oci_free_descriptor', |
|
545 | + 'oci_free_statement', |
|
546 | + 'oci_new_collection', |
|
547 | + 'oci_new_connect', |
|
548 | + 'oci_new_cursor', |
|
549 | + 'oci_new_descriptor', |
|
550 | + 'oci_num_fields', |
|
551 | + 'oci_num_rows', |
|
552 | + 'oci_parse', |
|
553 | + 'oci_pconnect', |
|
554 | + 'oci_result', |
|
555 | + 'oci_rollback', |
|
556 | + 'oci_server_version', |
|
557 | + 'oci_set_action', |
|
558 | + 'oci_set_call_timeout', |
|
559 | + 'oci_set_client_identifier', |
|
560 | + 'oci_set_client_info', |
|
561 | + 'oci_set_db_operation', |
|
562 | + 'oci_set_edition', |
|
563 | + 'oci_set_module_name', |
|
564 | + 'oci_set_prefetch', |
|
565 | + 'oci_statement_type', |
|
566 | + 'oci_unregister_taf_callback', |
|
567 | + 'odbc_autocommit', |
|
568 | + 'odbc_binmode', |
|
569 | + 'odbc_columnprivileges', |
|
570 | + 'odbc_columns', |
|
571 | + 'odbc_commit', |
|
572 | + 'odbc_data_source', |
|
573 | + 'odbc_exec', |
|
574 | + 'odbc_execute', |
|
575 | + 'odbc_fetch_into', |
|
576 | + 'odbc_field_len', |
|
577 | + 'odbc_field_name', |
|
578 | + 'odbc_field_num', |
|
579 | + 'odbc_field_scale', |
|
580 | + 'odbc_field_type', |
|
581 | + 'odbc_foreignkeys', |
|
582 | + 'odbc_gettypeinfo', |
|
583 | + 'odbc_longreadlen', |
|
584 | + 'odbc_prepare', |
|
585 | + 'odbc_primarykeys', |
|
586 | + 'odbc_result', |
|
587 | + 'odbc_result_all', |
|
588 | + 'odbc_rollback', |
|
589 | + 'odbc_setoption', |
|
590 | + 'odbc_specialcolumns', |
|
591 | + 'odbc_statistics', |
|
592 | + 'odbc_tableprivileges', |
|
593 | + 'odbc_tables', |
|
594 | + 'opcache_compile_file', |
|
595 | + 'opcache_get_status', |
|
596 | + 'opendir', |
|
597 | + 'openlog', |
|
598 | + 'openssl_cipher_iv_length', |
|
599 | + 'openssl_csr_export', |
|
600 | + 'openssl_csr_export_to_file', |
|
601 | + 'openssl_csr_get_subject', |
|
602 | + 'openssl_csr_new', |
|
603 | + 'openssl_csr_sign', |
|
604 | + 'openssl_decrypt', |
|
605 | + 'openssl_dh_compute_key', |
|
606 | + 'openssl_digest', |
|
607 | + 'openssl_encrypt', |
|
608 | + 'openssl_open', |
|
609 | + 'openssl_pbkdf2', |
|
610 | + 'openssl_pkcs7_decrypt', |
|
611 | + 'openssl_pkcs7_encrypt', |
|
612 | + 'openssl_pkcs7_read', |
|
613 | + 'openssl_pkcs7_sign', |
|
614 | + 'openssl_pkcs12_export', |
|
615 | + 'openssl_pkcs12_export_to_file', |
|
616 | + 'openssl_pkcs12_read', |
|
617 | + 'openssl_pkey_export', |
|
618 | + 'openssl_pkey_export_to_file', |
|
619 | + 'openssl_pkey_get_private', |
|
620 | + 'openssl_pkey_get_public', |
|
621 | + 'openssl_pkey_new', |
|
622 | + 'openssl_private_decrypt', |
|
623 | + 'openssl_private_encrypt', |
|
624 | + 'openssl_public_decrypt', |
|
625 | + 'openssl_public_encrypt', |
|
626 | + 'openssl_random_pseudo_bytes', |
|
627 | + 'openssl_seal', |
|
628 | + 'openssl_sign', |
|
629 | + 'openssl_x509_export', |
|
630 | + 'openssl_x509_export_to_file', |
|
631 | + 'openssl_x509_fingerprint', |
|
632 | + 'openssl_x509_read', |
|
633 | + 'output_add_rewrite_var', |
|
634 | + 'output_reset_rewrite_vars', |
|
635 | + 'pack', |
|
636 | + 'parse_ini_file', |
|
637 | + 'parse_ini_string', |
|
638 | + 'parse_url', |
|
639 | + 'password_hash', |
|
640 | + 'pcntl_exec', |
|
641 | + 'pcntl_getpriority', |
|
642 | + 'pcntl_setpriority', |
|
643 | + 'pcntl_signal_dispatch', |
|
644 | + 'pcntl_sigprocmask', |
|
645 | + 'pcntl_strerror', |
|
646 | + 'PDF_activate_item', |
|
647 | + 'PDF_add_locallink', |
|
648 | + 'PDF_add_nameddest', |
|
649 | + 'PDF_add_note', |
|
650 | + 'PDF_add_pdflink', |
|
651 | + 'PDF_add_thumbnail', |
|
652 | + 'PDF_add_weblink', |
|
653 | + 'PDF_attach_file', |
|
654 | + 'PDF_begin_layer', |
|
655 | + 'PDF_begin_page', |
|
656 | + 'PDF_begin_page_ext', |
|
657 | + 'PDF_circle', |
|
658 | + 'PDF_clip', |
|
659 | + 'PDF_close', |
|
660 | + 'PDF_closepath', |
|
661 | + 'PDF_closepath_fill_stroke', |
|
662 | + 'PDF_closepath_stroke', |
|
663 | + 'PDF_close_pdi', |
|
664 | + 'PDF_close_pdi_page', |
|
665 | + 'PDF_concat', |
|
666 | + 'PDF_continue_text', |
|
667 | + 'PDF_curveto', |
|
668 | + 'PDF_delete', |
|
669 | + 'PDF_end_layer', |
|
670 | + 'PDF_end_page', |
|
671 | + 'PDF_end_page_ext', |
|
672 | + 'PDF_end_pattern', |
|
673 | + 'PDF_end_template', |
|
674 | + 'PDF_fill', |
|
675 | + 'PDF_fill_stroke', |
|
676 | + 'PDF_fit_image', |
|
677 | + 'PDF_fit_pdi_page', |
|
678 | + 'PDF_fit_textline', |
|
679 | + 'PDF_initgraphics', |
|
680 | + 'PDF_lineto', |
|
681 | + 'PDF_makespotcolor', |
|
682 | + 'PDF_moveto', |
|
683 | + 'PDF_open_file', |
|
684 | + 'PDF_place_image', |
|
685 | + 'PDF_place_pdi_page', |
|
686 | + 'PDF_rect', |
|
687 | + 'PDF_restore', |
|
688 | + 'PDF_rotate', |
|
689 | + 'PDF_save', |
|
690 | + 'PDF_scale', |
|
691 | + 'PDF_setcolor', |
|
692 | + 'PDF_setdash', |
|
693 | + 'PDF_setdashpattern', |
|
694 | + 'PDF_setflat', |
|
695 | + 'PDF_setfont', |
|
696 | + 'PDF_setgray', |
|
697 | + 'PDF_setgray_fill', |
|
698 | + 'PDF_setgray_stroke', |
|
699 | + 'PDF_setlinejoin', |
|
700 | + 'PDF_setlinewidth', |
|
701 | + 'PDF_setmatrix', |
|
702 | + 'PDF_setmiterlimit', |
|
703 | + 'PDF_setrgbcolor', |
|
704 | + 'PDF_setrgbcolor_fill', |
|
705 | + 'PDF_setrgbcolor_stroke', |
|
706 | + 'PDF_set_border_color', |
|
707 | + 'PDF_set_border_dash', |
|
708 | + 'PDF_set_border_style', |
|
709 | + 'PDF_set_info', |
|
710 | + 'PDF_set_layer_dependency', |
|
711 | + 'PDF_set_parameter', |
|
712 | + 'PDF_set_text_pos', |
|
713 | + 'PDF_set_value', |
|
714 | + 'PDF_show', |
|
715 | + 'PDF_show_xy', |
|
716 | + 'PDF_skew', |
|
717 | + 'PDF_stroke', |
|
718 | + 'pg_cancel_query', |
|
719 | + 'pg_client_encoding', |
|
720 | + 'pg_close', |
|
721 | + 'pg_connect', |
|
722 | + 'pg_connection_reset', |
|
723 | + 'pg_convert', |
|
724 | + 'pg_copy_from', |
|
725 | + 'pg_copy_to', |
|
726 | + 'pg_dbname', |
|
727 | + 'pg_delete', |
|
728 | + 'pg_end_copy', |
|
729 | + 'pg_execute', |
|
730 | + 'pg_field_name', |
|
731 | + 'pg_field_table', |
|
732 | + 'pg_field_type', |
|
733 | + 'pg_flush', |
|
734 | + 'pg_free_result', |
|
735 | + 'pg_host', |
|
736 | + 'pg_insert', |
|
737 | + 'pg_last_error', |
|
738 | + 'pg_last_notice', |
|
739 | + 'pg_last_oid', |
|
740 | + 'pg_lo_close', |
|
741 | + 'pg_lo_export', |
|
742 | + 'pg_lo_import', |
|
743 | + 'pg_lo_open', |
|
744 | + 'pg_lo_read', |
|
745 | + 'pg_lo_read_all', |
|
746 | + 'pg_lo_seek', |
|
747 | + 'pg_lo_truncate', |
|
748 | + 'pg_lo_unlink', |
|
749 | + 'pg_lo_write', |
|
750 | + 'pg_meta_data', |
|
751 | + 'pg_options', |
|
752 | + 'pg_parameter_status', |
|
753 | + 'pg_pconnect', |
|
754 | + 'pg_ping', |
|
755 | + 'pg_port', |
|
756 | + 'pg_prepare', |
|
757 | + 'pg_put_line', |
|
758 | + 'pg_query', |
|
759 | + 'pg_query_params', |
|
760 | + 'pg_result_error_field', |
|
761 | + 'pg_result_seek', |
|
762 | + 'pg_select', |
|
763 | + 'pg_send_execute', |
|
764 | + 'pg_send_prepare', |
|
765 | + 'pg_send_query', |
|
766 | + 'pg_send_query_params', |
|
767 | + 'pg_socket', |
|
768 | + 'pg_trace', |
|
769 | + 'pg_tty', |
|
770 | + 'pg_update', |
|
771 | + 'pg_version', |
|
772 | + 'phpcredits', |
|
773 | + 'phpinfo', |
|
774 | + 'png2wbmp', |
|
775 | + 'posix_access', |
|
776 | + 'posix_getgrnam', |
|
777 | + 'posix_getpgid', |
|
778 | + 'posix_initgroups', |
|
779 | + 'posix_kill', |
|
780 | + 'posix_mkfifo', |
|
781 | + 'posix_mknod', |
|
782 | + 'posix_setegid', |
|
783 | + 'posix_seteuid', |
|
784 | + 'posix_setgid', |
|
785 | + 'posix_setpgid', |
|
786 | + 'posix_setrlimit', |
|
787 | + 'posix_setuid', |
|
788 | + 'preg_match', |
|
789 | + 'preg_match_all', |
|
790 | + 'preg_replace', |
|
791 | + 'preg_split', |
|
792 | + 'proc_get_status', |
|
793 | + 'proc_nice', |
|
794 | + 'pspell_add_to_personal', |
|
795 | + 'pspell_add_to_session', |
|
796 | + 'pspell_clear_session', |
|
797 | + 'pspell_config_create', |
|
798 | + 'pspell_config_data_dir', |
|
799 | + 'pspell_config_dict_dir', |
|
800 | + 'pspell_config_ignore', |
|
801 | + 'pspell_config_mode', |
|
802 | + 'pspell_config_personal', |
|
803 | + 'pspell_config_repl', |
|
804 | + 'pspell_config_runtogether', |
|
805 | + 'pspell_config_save_repl', |
|
806 | + 'pspell_new', |
|
807 | + 'pspell_new_config', |
|
808 | + 'pspell_save_wordlist', |
|
809 | + 'pspell_store_replacement', |
|
810 | + 'ps_add_launchlink', |
|
811 | + 'ps_add_locallink', |
|
812 | + 'ps_add_note', |
|
813 | + 'ps_add_pdflink', |
|
814 | + 'ps_add_weblink', |
|
815 | + 'ps_arc', |
|
816 | + 'ps_arcn', |
|
817 | + 'ps_begin_page', |
|
818 | + 'ps_begin_pattern', |
|
819 | + 'ps_begin_template', |
|
820 | + 'ps_circle', |
|
821 | + 'ps_clip', |
|
822 | + 'ps_close', |
|
823 | + 'ps_closepath', |
|
824 | + 'ps_closepath_stroke', |
|
825 | + 'ps_close_image', |
|
826 | + 'ps_continue_text', |
|
827 | + 'ps_curveto', |
|
828 | + 'ps_delete', |
|
829 | + 'ps_end_page', |
|
830 | + 'ps_end_pattern', |
|
831 | + 'ps_end_template', |
|
832 | + 'ps_fill', |
|
833 | + 'ps_fill_stroke', |
|
834 | + 'ps_get_parameter', |
|
835 | + 'ps_hyphenate', |
|
836 | + 'ps_include_file', |
|
837 | + 'ps_lineto', |
|
838 | + 'ps_moveto', |
|
839 | + 'ps_new', |
|
840 | + 'ps_open_file', |
|
841 | + 'ps_place_image', |
|
842 | + 'ps_rect', |
|
843 | + 'ps_restore', |
|
844 | + 'ps_rotate', |
|
845 | + 'ps_save', |
|
846 | + 'ps_scale', |
|
847 | + 'ps_setcolor', |
|
848 | + 'ps_setdash', |
|
849 | + 'ps_setflat', |
|
850 | + 'ps_setfont', |
|
851 | + 'ps_setgray', |
|
852 | + 'ps_setlinecap', |
|
853 | + 'ps_setlinejoin', |
|
854 | + 'ps_setlinewidth', |
|
855 | + 'ps_setmiterlimit', |
|
856 | + 'ps_setoverprintmode', |
|
857 | + 'ps_setpolydash', |
|
858 | + 'ps_set_border_color', |
|
859 | + 'ps_set_border_dash', |
|
860 | + 'ps_set_border_style', |
|
861 | + 'ps_set_info', |
|
862 | + 'ps_set_parameter', |
|
863 | + 'ps_set_text_pos', |
|
864 | + 'ps_set_value', |
|
865 | + 'ps_shading', |
|
866 | + 'ps_shading_pattern', |
|
867 | + 'ps_shfill', |
|
868 | + 'ps_show', |
|
869 | + 'ps_show2', |
|
870 | + 'ps_show_xy', |
|
871 | + 'ps_show_xy2', |
|
872 | + 'ps_stroke', |
|
873 | + 'ps_symbol', |
|
874 | + 'ps_translate', |
|
875 | + 'putenv', |
|
876 | + 'readfile', |
|
877 | + 'readgzfile', |
|
878 | + 'readline_add_history', |
|
879 | + 'readline_callback_handler_install', |
|
880 | + 'readline_clear_history', |
|
881 | + 'readline_completion_function', |
|
882 | + 'readline_read_history', |
|
883 | + 'readline_write_history', |
|
884 | + 'readlink', |
|
885 | + 'realpath', |
|
886 | + 'register_tick_function', |
|
887 | + 'rename', |
|
888 | + 'rewind', |
|
889 | + 'rewinddir', |
|
890 | + 'rmdir', |
|
891 | + 'rpmaddtag', |
|
892 | + 'rrd_create', |
|
893 | + 'rsort', |
|
894 | + 'sapi_windows_cp_conv', |
|
895 | + 'sapi_windows_cp_set', |
|
896 | + 'sapi_windows_generate_ctrl_event', |
|
897 | + 'sapi_windows_vt100_support', |
|
898 | + 'scandir', |
|
899 | + 'sem_acquire', |
|
900 | + 'sem_get', |
|
901 | + 'sem_release', |
|
902 | + 'sem_remove', |
|
903 | + 'session_abort', |
|
904 | + 'session_decode', |
|
905 | + 'session_destroy', |
|
906 | + 'session_regenerate_id', |
|
907 | + 'session_reset', |
|
908 | + 'session_unset', |
|
909 | + 'session_write_close', |
|
910 | + 'settype', |
|
911 | + 'set_include_path', |
|
912 | + 'set_time_limit', |
|
913 | + 'sha1_file', |
|
914 | + 'shmop_delete', |
|
915 | + 'shmop_read', |
|
916 | + 'shmop_write', |
|
917 | + 'shm_put_var', |
|
918 | + 'shm_remove', |
|
919 | + 'shm_remove_var', |
|
920 | + 'shuffle', |
|
921 | + 'simplexml_import_dom', |
|
922 | + 'simplexml_load_file', |
|
923 | + 'simplexml_load_string', |
|
924 | + 'sleep', |
|
925 | + 'socket_accept', |
|
926 | + 'socket_addrinfo_bind', |
|
927 | + 'socket_addrinfo_connect', |
|
928 | + 'socket_bind', |
|
929 | + 'socket_connect', |
|
930 | + 'socket_create', |
|
931 | + 'socket_create_listen', |
|
932 | + 'socket_create_pair', |
|
933 | + 'socket_export_stream', |
|
934 | + 'socket_getpeername', |
|
935 | + 'socket_getsockname', |
|
936 | + 'socket_get_option', |
|
937 | + 'socket_import_stream', |
|
938 | + 'socket_listen', |
|
939 | + 'socket_read', |
|
940 | + 'socket_send', |
|
941 | + 'socket_sendmsg', |
|
942 | + 'socket_sendto', |
|
943 | + 'socket_set_block', |
|
944 | + 'socket_set_nonblock', |
|
945 | + 'socket_set_option', |
|
946 | + 'socket_shutdown', |
|
947 | + 'socket_write', |
|
948 | + 'socket_wsaprotocol_info_export', |
|
949 | + 'socket_wsaprotocol_info_import', |
|
950 | + 'socket_wsaprotocol_info_release', |
|
951 | + 'sodium_crypto_pwhash', |
|
952 | + 'sodium_crypto_pwhash_str', |
|
953 | + 'solr_get_version', |
|
954 | + 'sort', |
|
955 | + 'soundex', |
|
956 | + 'spl_autoload_register', |
|
957 | + 'spl_autoload_unregister', |
|
958 | + 'sprintf', |
|
959 | + 'sqlsrv_begin_transaction', |
|
960 | + 'sqlsrv_cancel', |
|
961 | + 'sqlsrv_client_info', |
|
962 | + 'sqlsrv_close', |
|
963 | + 'sqlsrv_commit', |
|
964 | + 'sqlsrv_configure', |
|
965 | + 'sqlsrv_execute', |
|
966 | + 'sqlsrv_free_stmt', |
|
967 | + 'sqlsrv_get_field', |
|
968 | + 'sqlsrv_next_result', |
|
969 | + 'sqlsrv_num_fields', |
|
970 | + 'sqlsrv_num_rows', |
|
971 | + 'sqlsrv_prepare', |
|
972 | + 'sqlsrv_query', |
|
973 | + 'sqlsrv_rollback', |
|
974 | + 'ssdeep_fuzzy_compare', |
|
975 | + 'ssdeep_fuzzy_hash', |
|
976 | + 'ssdeep_fuzzy_hash_filename', |
|
977 | + 'ssh2_auth_agent', |
|
978 | + 'ssh2_auth_hostbased_file', |
|
979 | + 'ssh2_auth_password', |
|
980 | + 'ssh2_auth_pubkey_file', |
|
981 | + 'ssh2_connect', |
|
982 | + 'ssh2_disconnect', |
|
983 | + 'ssh2_exec', |
|
984 | + 'ssh2_publickey_add', |
|
985 | + 'ssh2_publickey_init', |
|
986 | + 'ssh2_publickey_remove', |
|
987 | + 'ssh2_scp_recv', |
|
988 | + 'ssh2_scp_send', |
|
989 | + 'ssh2_sftp', |
|
990 | + 'ssh2_sftp_chmod', |
|
991 | + 'ssh2_sftp_mkdir', |
|
992 | + 'ssh2_sftp_rename', |
|
993 | + 'ssh2_sftp_rmdir', |
|
994 | + 'ssh2_sftp_symlink', |
|
995 | + 'ssh2_sftp_unlink', |
|
996 | + 'stream_context_set_params', |
|
997 | + 'stream_copy_to_stream', |
|
998 | + 'stream_filter_append', |
|
999 | + 'stream_filter_prepend', |
|
1000 | + 'stream_filter_register', |
|
1001 | + 'stream_filter_remove', |
|
1002 | + 'stream_get_contents', |
|
1003 | + 'stream_isatty', |
|
1004 | + 'stream_resolve_include_path', |
|
1005 | + 'stream_set_blocking', |
|
1006 | + 'stream_set_timeout', |
|
1007 | + 'stream_socket_accept', |
|
1008 | + 'stream_socket_client', |
|
1009 | + 'stream_socket_pair', |
|
1010 | + 'stream_socket_server', |
|
1011 | + 'stream_socket_shutdown', |
|
1012 | + 'stream_supports_lock', |
|
1013 | + 'stream_wrapper_register', |
|
1014 | + 'stream_wrapper_restore', |
|
1015 | + 'stream_wrapper_unregister', |
|
1016 | + 'strptime', |
|
1017 | + 'strtotime', |
|
1018 | + 'substr', |
|
1019 | + 'swoole_async_write', |
|
1020 | + 'swoole_async_writefile', |
|
1021 | + 'swoole_event_defer', |
|
1022 | + 'swoole_event_del', |
|
1023 | + 'swoole_event_write', |
|
1024 | + 'symlink', |
|
1025 | + 'syslog', |
|
1026 | + 'system', |
|
1027 | + 'tempnam', |
|
1028 | + 'timezone_name_from_abbr', |
|
1029 | + 'time_nanosleep', |
|
1030 | + 'time_sleep_until', |
|
1031 | + 'tmpfile', |
|
1032 | + 'touch', |
|
1033 | + 'uasort', |
|
1034 | + 'uksort', |
|
1035 | + 'unlink', |
|
1036 | + 'unpack', |
|
1037 | + 'uopz_extend', |
|
1038 | + 'uopz_implement', |
|
1039 | + 'usort', |
|
1040 | + 'virtual', |
|
1041 | + 'vsprintf', |
|
1042 | + 'xdiff_file_bdiff', |
|
1043 | + 'xdiff_file_bpatch', |
|
1044 | + 'xdiff_file_diff', |
|
1045 | + 'xdiff_file_diff_binary', |
|
1046 | + 'xdiff_file_patch_binary', |
|
1047 | + 'xdiff_file_rabdiff', |
|
1048 | + 'xdiff_string_bpatch', |
|
1049 | + 'xdiff_string_patch', |
|
1050 | + 'xdiff_string_patch_binary', |
|
1051 | + 'xmlrpc_set_type', |
|
1052 | + 'xml_parser_create', |
|
1053 | + 'xml_parser_create_ns', |
|
1054 | + 'xml_set_object', |
|
1055 | + 'yaml_parse', |
|
1056 | + 'yaml_parse_file', |
|
1057 | + 'yaml_parse_url', |
|
1058 | + 'yaz_ccl_parse', |
|
1059 | + 'yaz_close', |
|
1060 | + 'yaz_connect', |
|
1061 | + 'yaz_database', |
|
1062 | + 'yaz_element', |
|
1063 | + 'yaz_present', |
|
1064 | + 'yaz_search', |
|
1065 | + 'yaz_wait', |
|
1066 | + 'zip_entry_close', |
|
1067 | + 'zip_entry_open', |
|
1068 | + 'zip_entry_read', |
|
1069 | + 'zlib_decode', |
|
1070 | 1070 | ]; |
@@ -19,12 +19,12 @@ discard block |
||
19 | 19 | */ |
20 | 20 | function base64_decode(string $data, bool $strict = false): string |
21 | 21 | { |
22 | - error_clear_last(); |
|
23 | - $result = \base64_decode($data, $strict); |
|
24 | - if ($result === false) { |
|
25 | - throw UrlException::createFromPhpError(); |
|
26 | - } |
|
27 | - return $result; |
|
22 | + error_clear_last(); |
|
23 | + $result = \base64_decode($data, $strict); |
|
24 | + if ($result === false) { |
|
25 | + throw UrlException::createFromPhpError(); |
|
26 | + } |
|
27 | + return $result; |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | |
@@ -44,16 +44,16 @@ discard block |
||
44 | 44 | */ |
45 | 45 | function get_headers(string $url, int $format = 0, $context = null): array |
46 | 46 | { |
47 | - error_clear_last(); |
|
48 | - if ($context !== null) { |
|
49 | - $result = \get_headers($url, $format, $context); |
|
50 | - } else { |
|
51 | - $result = \get_headers($url, $format); |
|
52 | - } |
|
53 | - if ($result === false) { |
|
54 | - throw UrlException::createFromPhpError(); |
|
55 | - } |
|
56 | - return $result; |
|
47 | + error_clear_last(); |
|
48 | + if ($context !== null) { |
|
49 | + $result = \get_headers($url, $format, $context); |
|
50 | + } else { |
|
51 | + $result = \get_headers($url, $format); |
|
52 | + } |
|
53 | + if ($result === false) { |
|
54 | + throw UrlException::createFromPhpError(); |
|
55 | + } |
|
56 | + return $result; |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | |
@@ -135,10 +135,10 @@ discard block |
||
135 | 135 | */ |
136 | 136 | function parse_url(string $url, int $component = -1) |
137 | 137 | { |
138 | - error_clear_last(); |
|
139 | - $result = \parse_url($url, $component); |
|
140 | - if ($result === false) { |
|
141 | - throw UrlException::createFromPhpError(); |
|
142 | - } |
|
143 | - return $result; |
|
138 | + error_clear_last(); |
|
139 | + $result = \parse_url($url, $component); |
|
140 | + if ($result === false) { |
|
141 | + throw UrlException::createFromPhpError(); |
|
142 | + } |
|
143 | + return $result; |
|
144 | 144 | } |
@@ -21,12 +21,12 @@ discard block |
||
21 | 21 | */ |
22 | 22 | function eio_busy(int $delay, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
23 | 23 | { |
24 | - error_clear_last(); |
|
25 | - $result = \eio_busy($delay, $pri, $callback, $data); |
|
26 | - if ($result === false) { |
|
27 | - throw EioException::createFromPhpError(); |
|
28 | - } |
|
29 | - return $result; |
|
24 | + error_clear_last(); |
|
25 | + $result = \eio_busy($delay, $pri, $callback, $data); |
|
26 | + if ($result === false) { |
|
27 | + throw EioException::createFromPhpError(); |
|
28 | + } |
|
29 | + return $result; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | |
@@ -73,12 +73,12 @@ discard block |
||
73 | 73 | */ |
74 | 74 | function eio_chmod(string $path, int $mode, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
75 | 75 | { |
76 | - error_clear_last(); |
|
77 | - $result = \eio_chmod($path, $mode, $pri, $callback, $data); |
|
78 | - if ($result === false) { |
|
79 | - throw EioException::createFromPhpError(); |
|
80 | - } |
|
81 | - return $result; |
|
76 | + error_clear_last(); |
|
77 | + $result = \eio_chmod($path, $mode, $pri, $callback, $data); |
|
78 | + if ($result === false) { |
|
79 | + throw EioException::createFromPhpError(); |
|
80 | + } |
|
81 | + return $result; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | |
@@ -125,12 +125,12 @@ discard block |
||
125 | 125 | */ |
126 | 126 | function eio_chown(string $path, int $uid, int $gid = -1, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
127 | 127 | { |
128 | - error_clear_last(); |
|
129 | - $result = \eio_chown($path, $uid, $gid, $pri, $callback, $data); |
|
130 | - if ($result === false) { |
|
131 | - throw EioException::createFromPhpError(); |
|
132 | - } |
|
133 | - return $result; |
|
128 | + error_clear_last(); |
|
129 | + $result = \eio_chown($path, $uid, $gid, $pri, $callback, $data); |
|
130 | + if ($result === false) { |
|
131 | + throw EioException::createFromPhpError(); |
|
132 | + } |
|
133 | + return $result; |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | |
@@ -174,12 +174,12 @@ discard block |
||
174 | 174 | */ |
175 | 175 | function eio_close($fd, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
176 | 176 | { |
177 | - error_clear_last(); |
|
178 | - $result = \eio_close($fd, $pri, $callback, $data); |
|
179 | - if ($result === false) { |
|
180 | - throw EioException::createFromPhpError(); |
|
181 | - } |
|
182 | - return $result; |
|
177 | + error_clear_last(); |
|
178 | + $result = \eio_close($fd, $pri, $callback, $data); |
|
179 | + if ($result === false) { |
|
180 | + throw EioException::createFromPhpError(); |
|
181 | + } |
|
182 | + return $result; |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | |
@@ -233,12 +233,12 @@ discard block |
||
233 | 233 | */ |
234 | 234 | function eio_custom(callable $execute, int $pri, callable $callback, $data = null) |
235 | 235 | { |
236 | - error_clear_last(); |
|
237 | - $result = \eio_custom($execute, $pri, $callback, $data); |
|
238 | - if ($result === false) { |
|
239 | - throw EioException::createFromPhpError(); |
|
240 | - } |
|
241 | - return $result; |
|
236 | + error_clear_last(); |
|
237 | + $result = \eio_custom($execute, $pri, $callback, $data); |
|
238 | + if ($result === false) { |
|
239 | + throw EioException::createFromPhpError(); |
|
240 | + } |
|
241 | + return $result; |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | |
@@ -282,12 +282,12 @@ discard block |
||
282 | 282 | */ |
283 | 283 | function eio_dup2($fd, $fd2, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
284 | 284 | { |
285 | - error_clear_last(); |
|
286 | - $result = \eio_dup2($fd, $fd2, $pri, $callback, $data); |
|
287 | - if ($result === false) { |
|
288 | - throw EioException::createFromPhpError(); |
|
289 | - } |
|
290 | - return $result; |
|
285 | + error_clear_last(); |
|
286 | + $result = \eio_dup2($fd, $fd2, $pri, $callback, $data); |
|
287 | + if ($result === false) { |
|
288 | + throw EioException::createFromPhpError(); |
|
289 | + } |
|
290 | + return $result; |
|
291 | 291 | } |
292 | 292 | |
293 | 293 | |
@@ -299,11 +299,11 @@ discard block |
||
299 | 299 | */ |
300 | 300 | function eio_event_loop(): void |
301 | 301 | { |
302 | - error_clear_last(); |
|
303 | - $result = \eio_event_loop(); |
|
304 | - if ($result === false) { |
|
305 | - throw EioException::createFromPhpError(); |
|
306 | - } |
|
302 | + error_clear_last(); |
|
303 | + $result = \eio_event_loop(); |
|
304 | + if ($result === false) { |
|
305 | + throw EioException::createFromPhpError(); |
|
306 | + } |
|
307 | 307 | } |
308 | 308 | |
309 | 309 | |
@@ -354,12 +354,12 @@ discard block |
||
354 | 354 | */ |
355 | 355 | function eio_fallocate($fd, int $mode, int $offset, int $length, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
356 | 356 | { |
357 | - error_clear_last(); |
|
358 | - $result = \eio_fallocate($fd, $mode, $offset, $length, $pri, $callback, $data); |
|
359 | - if ($result === false) { |
|
360 | - throw EioException::createFromPhpError(); |
|
361 | - } |
|
362 | - return $result; |
|
357 | + error_clear_last(); |
|
358 | + $result = \eio_fallocate($fd, $mode, $offset, $length, $pri, $callback, $data); |
|
359 | + if ($result === false) { |
|
360 | + throw EioException::createFromPhpError(); |
|
361 | + } |
|
362 | + return $result; |
|
363 | 363 | } |
364 | 364 | |
365 | 365 | |
@@ -404,12 +404,12 @@ discard block |
||
404 | 404 | */ |
405 | 405 | function eio_fchmod($fd, int $mode, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
406 | 406 | { |
407 | - error_clear_last(); |
|
408 | - $result = \eio_fchmod($fd, $mode, $pri, $callback, $data); |
|
409 | - if ($result === false) { |
|
410 | - throw EioException::createFromPhpError(); |
|
411 | - } |
|
412 | - return $result; |
|
407 | + error_clear_last(); |
|
408 | + $result = \eio_fchmod($fd, $mode, $pri, $callback, $data); |
|
409 | + if ($result === false) { |
|
410 | + throw EioException::createFromPhpError(); |
|
411 | + } |
|
412 | + return $result; |
|
413 | 413 | } |
414 | 414 | |
415 | 415 | |
@@ -452,12 +452,12 @@ discard block |
||
452 | 452 | */ |
453 | 453 | function eio_fdatasync($fd, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
454 | 454 | { |
455 | - error_clear_last(); |
|
456 | - $result = \eio_fdatasync($fd, $pri, $callback, $data); |
|
457 | - if ($result === false) { |
|
458 | - throw EioException::createFromPhpError(); |
|
459 | - } |
|
460 | - return $result; |
|
455 | + error_clear_last(); |
|
456 | + $result = \eio_fdatasync($fd, $pri, $callback, $data); |
|
457 | + if ($result === false) { |
|
458 | + throw EioException::createFromPhpError(); |
|
459 | + } |
|
460 | + return $result; |
|
461 | 461 | } |
462 | 462 | |
463 | 463 | |
@@ -501,16 +501,16 @@ discard block |
||
501 | 501 | */ |
502 | 502 | function eio_fstat($fd, int $pri, callable $callback, $data = null) |
503 | 503 | { |
504 | - error_clear_last(); |
|
505 | - if ($data !== null) { |
|
506 | - $result = \eio_fstat($fd, $pri, $callback, $data); |
|
507 | - } else { |
|
508 | - $result = \eio_fstat($fd, $pri, $callback); |
|
509 | - } |
|
510 | - if ($result === false) { |
|
511 | - throw EioException::createFromPhpError(); |
|
512 | - } |
|
513 | - return $result; |
|
504 | + error_clear_last(); |
|
505 | + if ($data !== null) { |
|
506 | + $result = \eio_fstat($fd, $pri, $callback, $data); |
|
507 | + } else { |
|
508 | + $result = \eio_fstat($fd, $pri, $callback); |
|
509 | + } |
|
510 | + if ($result === false) { |
|
511 | + throw EioException::createFromPhpError(); |
|
512 | + } |
|
513 | + return $result; |
|
514 | 514 | } |
515 | 515 | |
516 | 516 | |
@@ -554,16 +554,16 @@ discard block |
||
554 | 554 | */ |
555 | 555 | function eio_fstatvfs($fd, int $pri, callable $callback, $data = null) |
556 | 556 | { |
557 | - error_clear_last(); |
|
558 | - if ($data !== null) { |
|
559 | - $result = \eio_fstatvfs($fd, $pri, $callback, $data); |
|
560 | - } else { |
|
561 | - $result = \eio_fstatvfs($fd, $pri, $callback); |
|
562 | - } |
|
563 | - if ($result === false) { |
|
564 | - throw EioException::createFromPhpError(); |
|
565 | - } |
|
566 | - return $result; |
|
557 | + error_clear_last(); |
|
558 | + if ($data !== null) { |
|
559 | + $result = \eio_fstatvfs($fd, $pri, $callback, $data); |
|
560 | + } else { |
|
561 | + $result = \eio_fstatvfs($fd, $pri, $callback); |
|
562 | + } |
|
563 | + if ($result === false) { |
|
564 | + throw EioException::createFromPhpError(); |
|
565 | + } |
|
566 | + return $result; |
|
567 | 567 | } |
568 | 568 | |
569 | 569 | |
@@ -606,12 +606,12 @@ discard block |
||
606 | 606 | */ |
607 | 607 | function eio_fsync($fd, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
608 | 608 | { |
609 | - error_clear_last(); |
|
610 | - $result = \eio_fsync($fd, $pri, $callback, $data); |
|
611 | - if ($result === false) { |
|
612 | - throw EioException::createFromPhpError(); |
|
613 | - } |
|
614 | - return $result; |
|
609 | + error_clear_last(); |
|
610 | + $result = \eio_fsync($fd, $pri, $callback, $data); |
|
611 | + if ($result === false) { |
|
612 | + throw EioException::createFromPhpError(); |
|
613 | + } |
|
614 | + return $result; |
|
615 | 615 | } |
616 | 616 | |
617 | 617 | |
@@ -657,12 +657,12 @@ discard block |
||
657 | 657 | */ |
658 | 658 | function eio_ftruncate($fd, int $offset = 0, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
659 | 659 | { |
660 | - error_clear_last(); |
|
661 | - $result = \eio_ftruncate($fd, $offset, $pri, $callback, $data); |
|
662 | - if ($result === false) { |
|
663 | - throw EioException::createFromPhpError(); |
|
664 | - } |
|
665 | - return $result; |
|
660 | + error_clear_last(); |
|
661 | + $result = \eio_ftruncate($fd, $offset, $pri, $callback, $data); |
|
662 | + if ($result === false) { |
|
663 | + throw EioException::createFromPhpError(); |
|
664 | + } |
|
665 | + return $result; |
|
666 | 666 | } |
667 | 667 | |
668 | 668 | |
@@ -708,12 +708,12 @@ discard block |
||
708 | 708 | */ |
709 | 709 | function eio_futime($fd, float $atime, float $mtime, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
710 | 710 | { |
711 | - error_clear_last(); |
|
712 | - $result = \eio_futime($fd, $atime, $mtime, $pri, $callback, $data); |
|
713 | - if ($result === false) { |
|
714 | - throw EioException::createFromPhpError(); |
|
715 | - } |
|
716 | - return $result; |
|
711 | + error_clear_last(); |
|
712 | + $result = \eio_futime($fd, $atime, $mtime, $pri, $callback, $data); |
|
713 | + if ($result === false) { |
|
714 | + throw EioException::createFromPhpError(); |
|
715 | + } |
|
716 | + return $result; |
|
717 | 717 | } |
718 | 718 | |
719 | 719 | |
@@ -752,12 +752,12 @@ discard block |
||
752 | 752 | */ |
753 | 753 | function eio_grp(callable $callback, string $data = null) |
754 | 754 | { |
755 | - error_clear_last(); |
|
756 | - $result = \eio_grp($callback, $data); |
|
757 | - if ($result === false) { |
|
758 | - throw EioException::createFromPhpError(); |
|
759 | - } |
|
760 | - return $result; |
|
755 | + error_clear_last(); |
|
756 | + $result = \eio_grp($callback, $data); |
|
757 | + if ($result === false) { |
|
758 | + throw EioException::createFromPhpError(); |
|
759 | + } |
|
760 | + return $result; |
|
761 | 761 | } |
762 | 762 | |
763 | 763 | |
@@ -801,12 +801,12 @@ discard block |
||
801 | 801 | */ |
802 | 802 | function eio_lstat(string $path, int $pri, callable $callback, $data = null) |
803 | 803 | { |
804 | - error_clear_last(); |
|
805 | - $result = \eio_lstat($path, $pri, $callback, $data); |
|
806 | - if ($result === false) { |
|
807 | - throw EioException::createFromPhpError(); |
|
808 | - } |
|
809 | - return $result; |
|
804 | + error_clear_last(); |
|
805 | + $result = \eio_lstat($path, $pri, $callback, $data); |
|
806 | + if ($result === false) { |
|
807 | + throw EioException::createFromPhpError(); |
|
808 | + } |
|
809 | + return $result; |
|
810 | 810 | } |
811 | 811 | |
812 | 812 | |
@@ -851,12 +851,12 @@ discard block |
||
851 | 851 | */ |
852 | 852 | function eio_mkdir(string $path, int $mode, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
853 | 853 | { |
854 | - error_clear_last(); |
|
855 | - $result = \eio_mkdir($path, $mode, $pri, $callback, $data); |
|
856 | - if ($result === false) { |
|
857 | - throw EioException::createFromPhpError(); |
|
858 | - } |
|
859 | - return $result; |
|
854 | + error_clear_last(); |
|
855 | + $result = \eio_mkdir($path, $mode, $pri, $callback, $data); |
|
856 | + if ($result === false) { |
|
857 | + throw EioException::createFromPhpError(); |
|
858 | + } |
|
859 | + return $result; |
|
860 | 860 | } |
861 | 861 | |
862 | 862 | |
@@ -916,12 +916,12 @@ discard block |
||
916 | 916 | */ |
917 | 917 | function eio_mknod(string $path, int $mode, int $dev, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
918 | 918 | { |
919 | - error_clear_last(); |
|
920 | - $result = \eio_mknod($path, $mode, $dev, $pri, $callback, $data); |
|
921 | - if ($result === false) { |
|
922 | - throw EioException::createFromPhpError(); |
|
923 | - } |
|
924 | - return $result; |
|
919 | + error_clear_last(); |
|
920 | + $result = \eio_mknod($path, $mode, $dev, $pri, $callback, $data); |
|
921 | + if ($result === false) { |
|
922 | + throw EioException::createFromPhpError(); |
|
923 | + } |
|
924 | + return $result; |
|
925 | 925 | } |
926 | 926 | |
927 | 927 | |
@@ -964,12 +964,12 @@ discard block |
||
964 | 964 | */ |
965 | 965 | function eio_nop(int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
966 | 966 | { |
967 | - error_clear_last(); |
|
968 | - $result = \eio_nop($pri, $callback, $data); |
|
969 | - if ($result === false) { |
|
970 | - throw EioException::createFromPhpError(); |
|
971 | - } |
|
972 | - return $result; |
|
967 | + error_clear_last(); |
|
968 | + $result = \eio_nop($pri, $callback, $data); |
|
969 | + if ($result === false) { |
|
970 | + throw EioException::createFromPhpError(); |
|
971 | + } |
|
972 | + return $result; |
|
973 | 973 | } |
974 | 974 | |
975 | 975 | |
@@ -1015,12 +1015,12 @@ discard block |
||
1015 | 1015 | */ |
1016 | 1016 | function eio_readahead($fd, int $offset, int $length, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1017 | 1017 | { |
1018 | - error_clear_last(); |
|
1019 | - $result = \eio_readahead($fd, $offset, $length, $pri, $callback, $data); |
|
1020 | - if ($result === false) { |
|
1021 | - throw EioException::createFromPhpError(); |
|
1022 | - } |
|
1023 | - return $result; |
|
1018 | + error_clear_last(); |
|
1019 | + $result = \eio_readahead($fd, $offset, $length, $pri, $callback, $data); |
|
1020 | + if ($result === false) { |
|
1021 | + throw EioException::createFromPhpError(); |
|
1022 | + } |
|
1023 | + return $result; |
|
1024 | 1024 | } |
1025 | 1025 | |
1026 | 1026 | |
@@ -1318,12 +1318,12 @@ discard block |
||
1318 | 1318 | */ |
1319 | 1319 | function eio_readdir(string $path, int $flags, int $pri, callable $callback, string $data = null) |
1320 | 1320 | { |
1321 | - error_clear_last(); |
|
1322 | - $result = \eio_readdir($path, $flags, $pri, $callback, $data); |
|
1323 | - if ($result === false) { |
|
1324 | - throw EioException::createFromPhpError(); |
|
1325 | - } |
|
1326 | - return $result; |
|
1321 | + error_clear_last(); |
|
1322 | + $result = \eio_readdir($path, $flags, $pri, $callback, $data); |
|
1323 | + if ($result === false) { |
|
1324 | + throw EioException::createFromPhpError(); |
|
1325 | + } |
|
1326 | + return $result; |
|
1327 | 1327 | } |
1328 | 1328 | |
1329 | 1329 | |
@@ -1366,12 +1366,12 @@ discard block |
||
1366 | 1366 | */ |
1367 | 1367 | function eio_readlink(string $path, int $pri, callable $callback, string $data = null) |
1368 | 1368 | { |
1369 | - error_clear_last(); |
|
1370 | - $result = \eio_readlink($path, $pri, $callback, $data); |
|
1371 | - if ($result === false) { |
|
1372 | - throw EioException::createFromPhpError(); |
|
1373 | - } |
|
1374 | - return $result; |
|
1369 | + error_clear_last(); |
|
1370 | + $result = \eio_readlink($path, $pri, $callback, $data); |
|
1371 | + if ($result === false) { |
|
1372 | + throw EioException::createFromPhpError(); |
|
1373 | + } |
|
1374 | + return $result; |
|
1375 | 1375 | } |
1376 | 1376 | |
1377 | 1377 | |
@@ -1415,12 +1415,12 @@ discard block |
||
1415 | 1415 | */ |
1416 | 1416 | function eio_rename(string $path, string $new_path, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1417 | 1417 | { |
1418 | - error_clear_last(); |
|
1419 | - $result = \eio_rename($path, $new_path, $pri, $callback, $data); |
|
1420 | - if ($result === false) { |
|
1421 | - throw EioException::createFromPhpError(); |
|
1422 | - } |
|
1423 | - return $result; |
|
1418 | + error_clear_last(); |
|
1419 | + $result = \eio_rename($path, $new_path, $pri, $callback, $data); |
|
1420 | + if ($result === false) { |
|
1421 | + throw EioException::createFromPhpError(); |
|
1422 | + } |
|
1423 | + return $result; |
|
1424 | 1424 | } |
1425 | 1425 | |
1426 | 1426 | |
@@ -1463,12 +1463,12 @@ discard block |
||
1463 | 1463 | */ |
1464 | 1464 | function eio_rmdir(string $path, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1465 | 1465 | { |
1466 | - error_clear_last(); |
|
1467 | - $result = \eio_rmdir($path, $pri, $callback, $data); |
|
1468 | - if ($result === false) { |
|
1469 | - throw EioException::createFromPhpError(); |
|
1470 | - } |
|
1471 | - return $result; |
|
1466 | + error_clear_last(); |
|
1467 | + $result = \eio_rmdir($path, $pri, $callback, $data); |
|
1468 | + if ($result === false) { |
|
1469 | + throw EioException::createFromPhpError(); |
|
1470 | + } |
|
1471 | + return $result; |
|
1472 | 1472 | } |
1473 | 1473 | |
1474 | 1474 | |
@@ -1519,12 +1519,12 @@ discard block |
||
1519 | 1519 | */ |
1520 | 1520 | function eio_seek($fd, int $offset, int $whence, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1521 | 1521 | { |
1522 | - error_clear_last(); |
|
1523 | - $result = \eio_seek($fd, $offset, $whence, $pri, $callback, $data); |
|
1524 | - if ($result === false) { |
|
1525 | - throw EioException::createFromPhpError(); |
|
1526 | - } |
|
1527 | - return $result; |
|
1522 | + error_clear_last(); |
|
1523 | + $result = \eio_seek($fd, $offset, $whence, $pri, $callback, $data); |
|
1524 | + if ($result === false) { |
|
1525 | + throw EioException::createFromPhpError(); |
|
1526 | + } |
|
1527 | + return $result; |
|
1528 | 1528 | } |
1529 | 1529 | |
1530 | 1530 | |
@@ -1571,20 +1571,20 @@ discard block |
||
1571 | 1571 | */ |
1572 | 1572 | function eio_sendfile($out_fd, $in_fd, int $offset, int $length, int $pri = null, callable $callback = null, string $data = null) |
1573 | 1573 | { |
1574 | - error_clear_last(); |
|
1575 | - if ($data !== null) { |
|
1576 | - $result = \eio_sendfile($out_fd, $in_fd, $offset, $length, $pri, $callback, $data); |
|
1577 | - } elseif ($callback !== null) { |
|
1578 | - $result = \eio_sendfile($out_fd, $in_fd, $offset, $length, $pri, $callback); |
|
1579 | - } elseif ($pri !== null) { |
|
1580 | - $result = \eio_sendfile($out_fd, $in_fd, $offset, $length, $pri); |
|
1581 | - } else { |
|
1582 | - $result = \eio_sendfile($out_fd, $in_fd, $offset, $length); |
|
1583 | - } |
|
1584 | - if ($result === false) { |
|
1585 | - throw EioException::createFromPhpError(); |
|
1586 | - } |
|
1587 | - return $result; |
|
1574 | + error_clear_last(); |
|
1575 | + if ($data !== null) { |
|
1576 | + $result = \eio_sendfile($out_fd, $in_fd, $offset, $length, $pri, $callback, $data); |
|
1577 | + } elseif ($callback !== null) { |
|
1578 | + $result = \eio_sendfile($out_fd, $in_fd, $offset, $length, $pri, $callback); |
|
1579 | + } elseif ($pri !== null) { |
|
1580 | + $result = \eio_sendfile($out_fd, $in_fd, $offset, $length, $pri); |
|
1581 | + } else { |
|
1582 | + $result = \eio_sendfile($out_fd, $in_fd, $offset, $length); |
|
1583 | + } |
|
1584 | + if ($result === false) { |
|
1585 | + throw EioException::createFromPhpError(); |
|
1586 | + } |
|
1587 | + return $result; |
|
1588 | 1588 | } |
1589 | 1589 | |
1590 | 1590 | |
@@ -1629,12 +1629,12 @@ discard block |
||
1629 | 1629 | */ |
1630 | 1630 | function eio_stat(string $path, int $pri, callable $callback, $data = null) |
1631 | 1631 | { |
1632 | - error_clear_last(); |
|
1633 | - $result = \eio_stat($path, $pri, $callback, $data); |
|
1634 | - if ($result === false) { |
|
1635 | - throw EioException::createFromPhpError(); |
|
1636 | - } |
|
1637 | - return $result; |
|
1632 | + error_clear_last(); |
|
1633 | + $result = \eio_stat($path, $pri, $callback, $data); |
|
1634 | + if ($result === false) { |
|
1635 | + throw EioException::createFromPhpError(); |
|
1636 | + } |
|
1637 | + return $result; |
|
1638 | 1638 | } |
1639 | 1639 | |
1640 | 1640 | |
@@ -1679,16 +1679,16 @@ discard block |
||
1679 | 1679 | */ |
1680 | 1680 | function eio_statvfs(string $path, int $pri, callable $callback, $data = null) |
1681 | 1681 | { |
1682 | - error_clear_last(); |
|
1683 | - if ($data !== null) { |
|
1684 | - $result = \eio_statvfs($path, $pri, $callback, $data); |
|
1685 | - } else { |
|
1686 | - $result = \eio_statvfs($path, $pri, $callback); |
|
1687 | - } |
|
1688 | - if ($result === false) { |
|
1689 | - throw EioException::createFromPhpError(); |
|
1690 | - } |
|
1691 | - return $result; |
|
1682 | + error_clear_last(); |
|
1683 | + if ($data !== null) { |
|
1684 | + $result = \eio_statvfs($path, $pri, $callback, $data); |
|
1685 | + } else { |
|
1686 | + $result = \eio_statvfs($path, $pri, $callback); |
|
1687 | + } |
|
1688 | + if ($result === false) { |
|
1689 | + throw EioException::createFromPhpError(); |
|
1690 | + } |
|
1691 | + return $result; |
|
1692 | 1692 | } |
1693 | 1693 | |
1694 | 1694 | |
@@ -1733,12 +1733,12 @@ discard block |
||
1733 | 1733 | */ |
1734 | 1734 | function eio_symlink(string $path, string $new_path, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1735 | 1735 | { |
1736 | - error_clear_last(); |
|
1737 | - $result = \eio_symlink($path, $new_path, $pri, $callback, $data); |
|
1738 | - if ($result === false) { |
|
1739 | - throw EioException::createFromPhpError(); |
|
1740 | - } |
|
1741 | - return $result; |
|
1736 | + error_clear_last(); |
|
1737 | + $result = \eio_symlink($path, $new_path, $pri, $callback, $data); |
|
1738 | + if ($result === false) { |
|
1739 | + throw EioException::createFromPhpError(); |
|
1740 | + } |
|
1741 | + return $result; |
|
1742 | 1742 | } |
1743 | 1743 | |
1744 | 1744 | |
@@ -1792,12 +1792,12 @@ discard block |
||
1792 | 1792 | */ |
1793 | 1793 | function eio_sync_file_range($fd, int $offset, int $nbytes, int $flags, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1794 | 1794 | { |
1795 | - error_clear_last(); |
|
1796 | - $result = \eio_sync_file_range($fd, $offset, $nbytes, $flags, $pri, $callback, $data); |
|
1797 | - if ($result === false) { |
|
1798 | - throw EioException::createFromPhpError(); |
|
1799 | - } |
|
1800 | - return $result; |
|
1795 | + error_clear_last(); |
|
1796 | + $result = \eio_sync_file_range($fd, $offset, $nbytes, $flags, $pri, $callback, $data); |
|
1797 | + if ($result === false) { |
|
1798 | + throw EioException::createFromPhpError(); |
|
1799 | + } |
|
1800 | + return $result; |
|
1801 | 1801 | } |
1802 | 1802 | |
1803 | 1803 | |
@@ -1813,12 +1813,12 @@ discard block |
||
1813 | 1813 | */ |
1814 | 1814 | function eio_sync(int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1815 | 1815 | { |
1816 | - error_clear_last(); |
|
1817 | - $result = \eio_sync($pri, $callback, $data); |
|
1818 | - if ($result === false) { |
|
1819 | - throw EioException::createFromPhpError(); |
|
1820 | - } |
|
1821 | - return $result; |
|
1816 | + error_clear_last(); |
|
1817 | + $result = \eio_sync($pri, $callback, $data); |
|
1818 | + if ($result === false) { |
|
1819 | + throw EioException::createFromPhpError(); |
|
1820 | + } |
|
1821 | + return $result; |
|
1822 | 1822 | } |
1823 | 1823 | |
1824 | 1824 | |
@@ -1861,12 +1861,12 @@ discard block |
||
1861 | 1861 | */ |
1862 | 1862 | function eio_syncfs($fd, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1863 | 1863 | { |
1864 | - error_clear_last(); |
|
1865 | - $result = \eio_syncfs($fd, $pri, $callback, $data); |
|
1866 | - if ($result === false) { |
|
1867 | - throw EioException::createFromPhpError(); |
|
1868 | - } |
|
1869 | - return $result; |
|
1864 | + error_clear_last(); |
|
1865 | + $result = \eio_syncfs($fd, $pri, $callback, $data); |
|
1866 | + if ($result === false) { |
|
1867 | + throw EioException::createFromPhpError(); |
|
1868 | + } |
|
1869 | + return $result; |
|
1870 | 1870 | } |
1871 | 1871 | |
1872 | 1872 | |
@@ -1911,12 +1911,12 @@ discard block |
||
1911 | 1911 | */ |
1912 | 1912 | function eio_truncate(string $path, int $offset = 0, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1913 | 1913 | { |
1914 | - error_clear_last(); |
|
1915 | - $result = \eio_truncate($path, $offset, $pri, $callback, $data); |
|
1916 | - if ($result === false) { |
|
1917 | - throw EioException::createFromPhpError(); |
|
1918 | - } |
|
1919 | - return $result; |
|
1914 | + error_clear_last(); |
|
1915 | + $result = \eio_truncate($path, $offset, $pri, $callback, $data); |
|
1916 | + if ($result === false) { |
|
1917 | + throw EioException::createFromPhpError(); |
|
1918 | + } |
|
1919 | + return $result; |
|
1920 | 1920 | } |
1921 | 1921 | |
1922 | 1922 | |
@@ -1959,12 +1959,12 @@ discard block |
||
1959 | 1959 | */ |
1960 | 1960 | function eio_unlink(string $path, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
1961 | 1961 | { |
1962 | - error_clear_last(); |
|
1963 | - $result = \eio_unlink($path, $pri, $callback, $data); |
|
1964 | - if ($result === false) { |
|
1965 | - throw EioException::createFromPhpError(); |
|
1966 | - } |
|
1967 | - return $result; |
|
1962 | + error_clear_last(); |
|
1963 | + $result = \eio_unlink($path, $pri, $callback, $data); |
|
1964 | + if ($result === false) { |
|
1965 | + throw EioException::createFromPhpError(); |
|
1966 | + } |
|
1967 | + return $result; |
|
1968 | 1968 | } |
1969 | 1969 | |
1970 | 1970 | |
@@ -2009,12 +2009,12 @@ discard block |
||
2009 | 2009 | */ |
2010 | 2010 | function eio_utime(string $path, float $atime, float $mtime, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
2011 | 2011 | { |
2012 | - error_clear_last(); |
|
2013 | - $result = \eio_utime($path, $atime, $mtime, $pri, $callback, $data); |
|
2014 | - if ($result === false) { |
|
2015 | - throw EioException::createFromPhpError(); |
|
2016 | - } |
|
2017 | - return $result; |
|
2012 | + error_clear_last(); |
|
2013 | + $result = \eio_utime($path, $atime, $mtime, $pri, $callback, $data); |
|
2014 | + if ($result === false) { |
|
2015 | + throw EioException::createFromPhpError(); |
|
2016 | + } |
|
2017 | + return $result; |
|
2018 | 2018 | } |
2019 | 2019 | |
2020 | 2020 | |
@@ -2062,10 +2062,10 @@ discard block |
||
2062 | 2062 | */ |
2063 | 2063 | function eio_write($fd, string $str, int $length = 0, int $offset = 0, int $pri = EIO_PRI_DEFAULT, callable $callback = null, $data = null) |
2064 | 2064 | { |
2065 | - error_clear_last(); |
|
2066 | - $result = \eio_write($fd, $str, $length, $offset, $pri, $callback, $data); |
|
2067 | - if ($result === false) { |
|
2068 | - throw EioException::createFromPhpError(); |
|
2069 | - } |
|
2070 | - return $result; |
|
2065 | + error_clear_last(); |
|
2066 | + $result = \eio_write($fd, $str, $length, $offset, $pri, $callback, $data); |
|
2067 | + if ($result === false) { |
|
2068 | + throw EioException::createFromPhpError(); |
|
2069 | + } |
|
2070 | + return $result; |
|
2071 | 2071 | } |
@@ -13,11 +13,11 @@ discard block |
||
13 | 13 | */ |
14 | 14 | function zip_entry_close($zip_entry): void |
15 | 15 | { |
16 | - error_clear_last(); |
|
17 | - $result = \zip_entry_close($zip_entry); |
|
18 | - if ($result === false) { |
|
19 | - throw ZipException::createFromPhpError(); |
|
20 | - } |
|
16 | + error_clear_last(); |
|
17 | + $result = \zip_entry_close($zip_entry); |
|
18 | + if ($result === false) { |
|
19 | + throw ZipException::createFromPhpError(); |
|
20 | + } |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | |
@@ -37,15 +37,15 @@ discard block |
||
37 | 37 | */ |
38 | 38 | function zip_entry_open($zip, $zip_entry, string $mode = null): void |
39 | 39 | { |
40 | - error_clear_last(); |
|
41 | - if ($mode !== null) { |
|
42 | - $result = \zip_entry_open($zip, $zip_entry, $mode); |
|
43 | - } else { |
|
44 | - $result = \zip_entry_open($zip, $zip_entry); |
|
45 | - } |
|
46 | - if ($result === false) { |
|
47 | - throw ZipException::createFromPhpError(); |
|
48 | - } |
|
40 | + error_clear_last(); |
|
41 | + if ($mode !== null) { |
|
42 | + $result = \zip_entry_open($zip, $zip_entry, $mode); |
|
43 | + } else { |
|
44 | + $result = \zip_entry_open($zip, $zip_entry); |
|
45 | + } |
|
46 | + if ($result === false) { |
|
47 | + throw ZipException::createFromPhpError(); |
|
48 | + } |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | |
@@ -62,10 +62,10 @@ discard block |
||
62 | 62 | */ |
63 | 63 | function zip_entry_read($zip_entry, int $length = 1024): string |
64 | 64 | { |
65 | - error_clear_last(); |
|
66 | - $result = \zip_entry_read($zip_entry, $length); |
|
67 | - if ($result === false) { |
|
68 | - throw ZipException::createFromPhpError(); |
|
69 | - } |
|
70 | - return $result; |
|
65 | + error_clear_last(); |
|
66 | + $result = \zip_entry_read($zip_entry, $length); |
|
67 | + if ($result === false) { |
|
68 | + throw ZipException::createFromPhpError(); |
|
69 | + } |
|
70 | + return $result; |
|
71 | 71 | } |