These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
0 ignored issues
–
show
|
|||
2 | require_once('vendor/autoload.php'); |
||
3 | |||
4 | View Code Duplication | class Foo |
|
0 ignored issues
–
show
This class seems to be duplicated in your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation. You can also find more detailed suggestions in the “Code” section of your repository. ![]() PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.
You can fix this by adding a namespace to your class: namespace YourVendor;
class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries. ![]() |
|||
5 | { |
||
6 | // Method to be executed in a thread |
||
7 | public function bar($t) |
||
8 | { |
||
9 | echo "Starting thread #$t" . PHP_EOL; |
||
10 | |||
11 | sleep(1 * rand(1, 5)); |
||
12 | for ($i = 0; $i < 10; $i++) { |
||
13 | echo "Hello from thread #$t, i=$i" . PHP_EOL; |
||
14 | sleep(1); |
||
15 | } |
||
16 | echo "Ending thread #$t" . PHP_EOL; |
||
17 | |||
18 | // Note: this line below require the file "config/cacheconfig.php" exists |
||
19 | return "$t: [[[[[[" . time() . "]]]]]]"; |
||
20 | } |
||
21 | } |
||
22 | |||
23 | try { |
||
24 | $t = array(); |
||
25 | |||
26 | $foo = new Foo(); |
||
27 | |||
28 | // Create the threads |
||
29 | for ($i = 0; $i < 10; $i++) { |
||
30 | // Create a new instance of the Thread class, pointing to "Foo" function |
||
31 | $thr = new \ByJG\PHPThread\Thread([$foo, 'bar']); |
||
32 | |||
33 | // Started the method "Foo" in a tread |
||
34 | $thr->execute($i); |
||
35 | |||
36 | // Save the thread reference to be manipulate |
||
37 | $t[] = $thr; |
||
38 | } |
||
39 | |||
40 | $done = false; |
||
41 | |||
42 | // It is important to check if all threads are done |
||
43 | // otherwise will be terminate when the php script is finished; |
||
44 | foreach ($t as $thread) { |
||
45 | $thread->waitFinish(); |
||
46 | } |
||
47 | |||
48 | // Note: this line below require the file "config/cacheconfig.php" exists |
||
49 | foreach ($t as $thread) { |
||
50 | echo "Result: " . $thread->getResult() . "\n"; |
||
51 | } |
||
52 | |||
53 | } catch (Exception $e) { |
||
54 | echo 'Exception: ' . $e . PHP_EOL; |
||
55 | } |
||
56 |
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.