3v4l.org

run code in 300+ PHP versions simultaneously
<?php $url = 'http://localhost/img'; $dir = 'C:\Program Files\Apache Group\Apache2\htdocs\img'; $max = 5; //$images = preg_grep('/\.(?:jpe?g|gif|png)\z/i', scandir($dir)); $images = array( 'a.jpg', 'b.GIF', 'C.png', 'd.JPEg', 'a.jpg', 'b.GIF', 'C.png', 'd.JPEg', 'a.jpg', 'b.GIF', 'C.png', 'd.JPEg', ); array_walk($images, function (&$v) use ($url) { $v = $url . $v; }); ?> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>画像</title> </head> <body> <h1><?=$dir?>内の画像一覧</h1> <?php if (!$images): ?> <p>表示する画像はありません</p> <?php else: ?> <table> <tr> <?php foreach ($images as $i => $img): ?> <?php if ($i !== 0 && $i % $max === 0): ?> </tr> <tr> <?php endif; ?> <td><img src="<?=$img?>"></td> <?php endforeach; ?> </tr> </table> <?php endif; ?> </body> </html>
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>画像</title> </head> <body> <h1>C:\Program Files\Apache Group\Apache2\htdocs\img内の画像一覧</h1> <table> <tr> <td><img src="http://localhost/imga.jpg"></td> <td><img src="http://localhost/imgb.GIF"></td> <td><img src="http://localhost/imgC.png"></td> <td><img src="http://localhost/imgd.JPEg"></td> <td><img src="http://localhost/imga.jpg"></td> </tr> <tr> <td><img src="http://localhost/imgb.GIF"></td> <td><img src="http://localhost/imgC.png"></td> <td><img src="http://localhost/imgd.JPEg"></td> <td><img src="http://localhost/imga.jpg"></td> <td><img src="http://localhost/imgb.GIF"></td> </tr> <tr> <td><img src="http://localhost/imgC.png"></td> <td><img src="http://localhost/imgd.JPEg"></td> </tr> </table> </body> </html>
Output for 5.3.0 - 5.3.29
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>画像</title> </head> <body> <h1><?=$dir?>内の画像一覧</h1> <table> <tr> <td><img src="<?=$img?>"></td> <td><img src="<?=$img?>"></td> <td><img src="<?=$img?>"></td> <td><img src="<?=$img?>"></td> <td><img src="<?=$img?>"></td> </tr> <tr> <td><img src="<?=$img?>"></td> <td><img src="<?=$img?>"></td> <td><img src="<?=$img?>"></td> <td><img src="<?=$img?>"></td> <td><img src="<?=$img?>"></td> </tr> <tr> <td><img src="<?=$img?>"></td> <td><img src="<?=$img?>"></td> </tr> </table> </body> </html>
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_FUNCTION in /in/ah0tO on line 24
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_FUNCTION in /in/ah0tO on line 24
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/ah0tO on line 24
Process exited with code 255.

preferences:
278.64 ms | 401 KiB | 381 Q