Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
NumberComparator.php
01 <?php
02
03 /*
04 * This file is part of the Symfony package.
05 *
06 * (c) Fabien Potencier <fabien@symfony.com>
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\Finder\Comparator;
13
14 /**
15 * NumberComparator compiles a simple comparison to an anonymous
16 * subroutine, which you can call with a value to be tested again.
17 *
18 * Now this would be very pointless, if NumberCompare didn't understand
19 * magnitudes.
20 *
21 * The target value may use magnitudes of kilobytes (k, ki),
22 * megabytes (m, mi), or gigabytes (g, gi). Those suffixed
23 * with an i use the appropriate 2**n version in accordance with the
24 * IEC standard: http://physics.nist.gov/cuu/Units/binary.html
25 *
26 * Based on the Perl Number::Compare module.
27 *
28 * @author Fabien Potencier <fabien@symfony.com> PHP port
29 * @author Richard Clamp <richardc@unixbeard.net> Perl version
30 * @copyright 2004-2005 Fabien Potencier <fabien@symfony.com>
31 * @copyright 2002 Richard Clamp <richardc@unixbeard.net>
32 *
33 * @see http://physics.nist.gov/cuu/Units/binary.html
34 */
35 class NumberComparator extends Comparator
36 {
37 /**
38 * Constructor.
39 *
40 * @param string $test A comparison string
41 *
42 * @throws \InvalidArgumentException If the test is not understood
43 */
44 public function __construct($test)
45 {
46 if (!preg_match('#^\s*(==|!=|[<>]=?)?\s*([0-9\.]+)\s*([kmg]i?)?\s*$#i', $test, $matches)) {
47 throw new \InvalidArgumentException(sprintf('Don\'t understand "%s" as a number test.', $test));
48 }
49
50 $target = $matches[2];
51 if (!is_numeric($target)) {
52 throw new \InvalidArgumentException(sprintf('Invalid number "%s".', $target));
53 }
54 if (isset($matches[3])) {
55 // magnitude
56 switch (strtolower($matches[3])) {
57 case 'k':
58 $target *= 1000;
59 break;
60 case 'ki':
61 $target *= 1024;
62 break;
63 case 'm':
64 $target *= 1000000;
65 break;
66 case 'mi':
67 $target *= 1024 * 1024;
68 break;
69 case 'g':
70 $target *= 1000000000;
71 break;
72 case 'gi':
73 $target *= 1024 * 1024 * 1024;
74 break;
75 }
76 }
77
78 $this->setTarget($target);
79 $this->setOperator(isset($matches[1]) ? $matches[1] : '==');
80 }
81 }
82