From a6a2d167d8311fbca950f92f1771f66d02683b9d Mon Sep 17 00:00:00 2001 From: Alex Porto dos Santos <31667409+alexporto2200@users.noreply.github.com> Date: Thu, 17 Oct 2019 15:39:22 -0300 Subject: [PATCH] Update array access syntax deprecated Update array access syntax deprecated in line 175 and 204 Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/alex/php/hello/ext_skel.php on line 175 Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/alex/php/hello/ext_skel.php on line 204 --- ext/ext_skel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/ext_skel.php b/ext/ext_skel.php index ea8df0ac7d..5f45ed5146 100755 --- a/ext/ext_skel.php +++ b/ext/ext_skel.php @@ -174,7 +174,7 @@ function process_args($argv, $argc) { { $val = $argv[$i]; - if($val{0} != '-' || $val{1} != '-') + if($val[0] != '-' || $val[1] != '-') { continue; } @@ -203,7 +203,7 @@ function process_args($argv, $argc) { case 'ext': case 'dir': case 'author': { - if (!isset($argv[$i + 1]) || ($argv[$i + 1]{0} == '-' && $argv[$i + 1]{1} == '-')) { + if (!isset($argv[$i + 1]) || ($argv[$i + 1][0] == '-' && $argv[$i + 1][1] == '-')) { error('Argument "' . $val . '" expects a value, none passed'); } else if ($opt == 'dir' && empty($argv[$i + 1])) { continue 2; -- 2.50.1