diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-28 12:19:02 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-28 12:19:31 +0900 |
| commit | 2d8c5f719e5c908059d3a34bc2356fa507c825f0 (patch) | |
| tree | 76fd686bd6385f85e0cf737d19bb85ee74220328 | |
| parent | 24607cd13b77ae2fd998b506b15f03ba98aa46ec (diff) | |
| download | phphp-2d8c5f719e5c908059d3a34bc2356fa507c825f0.tar.gz phphp-2d8c5f719e5c908059d3a34bc2356fa507c825f0.tar.zst phphp-2d8c5f719e5c908059d3a34bc2356fa507c825f0.zip | |
fix nesting level message
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | index.php | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -21,6 +21,7 @@ It will output the following: ``` Running on PHP Running on PHPHP on PHP +Running on PHPHP on PHPHP on PHP Hello, World! ``` @@ -49,6 +50,7 @@ It will execute hello world on PHPHP on PHPHP on PHP. Running on PHP Running on PHPHP on PHP Running on PHPHP on PHPHP on PHP +Running on PHPHP on PHPHP on PHPHP on PHP Hello, World! ``` @@ -1195,8 +1195,8 @@ $env['funcs'] = []; $env['consts'] = []; if (defined('PHPHP')) { + echo "Running" . str_repeat(" on PHPHP", PHPHP) . " on PHP\n"; if (PHPHP < 2) { - echo "Running" . str_repeat(" on PHPHP", PHPHP) . " on PHP\n"; $file = './index.php'; } else { $file = './hello.php'; |
