Completed
Pull Request — master (#38)
by Lars
01:34
created
example/example_scraping_imdb.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,5 +24,5 @@
 block discarded – undo
24 24
 $data = scraping_imdb('http://imdb.com/title/tt0335266/');
25 25
 
26 26
 foreach ($data as $k => $v) {
27
-    echo '<strong>' . $k . ' </strong>' . $v . '<br>';
27
+    echo '<strong>'.$k.' </strong>'.$v.'<br>';
28 28
 }
Please login to merge, or discard this patch.
example/example_scraping_lebensmittelwarnung.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,6 +34,6 @@
 block discarded – undo
34 34
 
35 35
 foreach ($data as $v) {
36 36
     foreach ($v as $k_inner => $v_inner) {
37
-        echo '<strong>' . $k_inner . ':</strong>&nbsp;' . $v_inner . '<br><br>';
37
+        echo '<strong>'.$k_inner.':</strong>&nbsp;'.$v_inner.'<br><br>';
38 38
     }
39 39
 }
Please login to merge, or discard this patch.