19
Fri, Apr
5 New Articles

TechTip: Avoid Pitfalls When Diving into PHP Arrays

Web Languages
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Get more PHP array knowledge under your belt.

 

Hi there! Remember the PHP array tip series I started some months ago? Sorry for the delay on the second installment, but things have been crazy. Now I'm back!

This time, I'll take you through some of the pitfalls that I discovered when starting to work with arrays. I'll also show you some ways to prevent your code from failing with run time errors that you might not have seen coming.

First, I'll give you some fundamental knowledge of how arrays are allocated in PHP and explain some of the things that are very different from RPG.

Let's get started!

More About Defining Arrays and the Pitfalls They Can Cause

Unlike with RPG, you don't have to specify the number of elements in an array in PHP. You simply add elements to the array when you need to, and the array will automatically be increased. (I know you can do the same in RPG with dynamic arrays, but that's not the common way as far as I know).

But unlike RPG, where you define an array that consists of 50 elements and the program knows that you have all the elements lined up from 1 to 50, this is not necessary in PHP, and one pitfall you might stumble into when starting to work with PHP arrays is that you can "jump" in the keys of the array, which means that you can leave out keys and get "holes" in the array.

In the example below in Listing 1, I have created an array that does just that.

<?php

// Define an array

$wrkAry = array(0=>"Elvis Costello",

                        1=>"Nick Cave",

                        2=>"Interpol",

                        4=>"The Police",

                        5=>"Sea Pink"

                        );

// Print out the array

print_r($wrkAry);

// Jump and add an entry

$wrkAry[12] = "Nada Surf";

$wrkAry[] = "Calexico";

echo "\n";

// Print out the array

print_r($wrkAry);

?>

Listing 1: Define an array with "jumped" keys.

This code will give the following output:

Array

(

   [0] => Elvis Costello

   [1] => Nick Cave

   [2] => Interpol

   [4] => The Police

   [5] => Sea Pink

)

 

Array

(

   [0] => Elvis Costello

   [1] => Nick Cave

   [2] => Interpol

   [4] => The Police

   [5] => Sea Pink

   [12] => Nada Surf

   [13] => Calexico

)

Note that after the jump, when I add one more entry to the array, PHP will automatic increase the counter and add the next entryin this case, it's "Calexico," which will be added as entry 13.

So far so good, but what about elements 6 to 11? Well, in RPG you could access them and they would just be empty, but in PHP, this is different because the elements do not exist. Let's look at looping through the code in example 2 in Listing 2.

<?php

// Define an array

$wrkAry = array(0=>"Elvis Costello",

                        1=>"Nick Cave",

                        2=>"Interpol",

                        4=>"The Police",

                        5=>"Sea Pink"

                        );

// Jump and add an entry

$wrkAry[12] = "Nada Surf";

$wrkAry[] = "Calexico";

// Get array elements and show how many

$loop = count($wrkAry);

echo "Nbr of elements is: $loop <hr>";

// Loop through the using a for loop

for ($i=0; $i<=$loop; $i++) {

      echo "The key is: $i / The value is: $wrkAry[$i] <br>";

}

?>

Listing 2: Loop through the array.

This would give you the following output:

Nbr of elements is: 7

The key is: 0 / The value is: Elvis Costello
The key is: 1 / The value is: Nick Cave
The key is: 2 / The value is: Interpol

Notice: Undefined offset: 3 in C:\htdocs\mcpressonline\PHP Arrays - part 2\code\ex2.php on line 23
The key is: 3 / The value is:
The key is: 4 / The value is: The Police
The key is: 5 / The value is: Sea Pink

Notice: Undefined offset: 6 in C:\htdocs\mcpressonline\PHP Arrays - part 2\code\ex2.php on line 23
The key is: 6 / The value is:

Notice: Undefined offset: 7 in C:\htdocs\mcpressonline\PHP Arrays - part 2\code\ex2.php on line 23
The key is: 7 / The value is:

Hmm. What happens here? Well, two things:

  1. 1.The number of elements in the array found by using the count() function is only 7, which of course is correct because only 7 active elements are specified in the array.
  2. 2.When looping through the array, elements 6 and 7 will yield an error because nothing is assigned to these elements (big difference from RPG!).

So if you want to make your code bulletproof, you must use the max() function, which will give you the highest key value of the array and also the if(isset(something) to check if an element is in use and avoid the runtime error.

This would make your code look like the one in example 3 in Listing 3:

<?php

// Define an array

$wrkAry = array(0=>"Elvis Costello",

                        1=>"Nick Cave",

                        2=>"Interpol",

                        4=>"The Police",

                        5=>"Sea Pink"

                        );

// Jump and add an entry

$wrkAry[12] = "Nada Surf";

$wrkAry[] = "Calexico";

// Get array elements and show how many

$loop = count($wrkAry);

echo "Nbr of elements is: $loop <hr>";

$max = max(array_keys($wrkAry));

echo "Highest key value is: $max <hr>";

// Move it to the loop variable

$loop = $max;

// Loop through the using a for loop

for ($i=0; $i<=$loop; $i++) {

      if(isset($wrkAry[$i])) {

            echo "The key is: $i / The value is: $wrkAry[$i] <br>";

      } else {

            echo "<b>Element $i is empty</b><br>";

      }

}

?>

Listing 3: Loop through the array and make sure all elements are shown and empty elements don't shout "error."

This will give you the following output:

Nbr of elements is: 7

Highest key value is: 13

The key is: 0 / The value is: Elvis Costello
The key is: 1 / The value is: Nick Cave
The key is: 2 / The value is: Interpol
Element 3 is empty
The key is: 4 / The value is: The Police
The key is: 5 / The value is: Sea Pink
Element 6 is empty
Element 7 is empty
Element 8 is empty
Element 9 is empty
Element 10 is empty
Element 11 is empty
The key is: 12 / The value is: Nada Surf
The key is: 13 / The value is: Calexico

 

Of course, you could also have used the code in example 4 in Listing 4.

<?php

// Define an array

$wrkAry = array(0=>"Elvis Costello",

                        1=>"Nick Cave",

                        2=>"Interpol",

                        4=>"The Police",

                        5=>"Sea Pink"

                        );

// Jump and add an entry

$wrkAry[12] = "Nada Surf";

$wrkAry[] = "Calexico";

// Loop through the array using foreach

foreach ($wrkAry as $key => $value) {

   echo 'Key: ' . $key . ' / Value: ' . $value .'<br>';

}

?>

Listing 4: Loop through the array using the foreach() function.

But the code in example 4 would not tell you which elements were empty, so depending on the task, you would have to use the loop method that suits you best.

If you don't care about the keys, you could use the array_values() function, which will re-index the array starting from zero as I have done in example 5 in Listing 5.

<?php

// Define an array

$wrkAry = array(0=>"Elvis Costello",

                        1=>"Nick Cave",

                        2=>"Interpol",

                        4=>"The Police",

                        5=>"Sea Pink"

                        );

// Jump and add an entry

$wrkAry[12] = "Nada Surf";

$wrkAry[] = "Calexico";

$wrkAry = array_values($wrkAry);

// Get array elements and show how many

$loop = count($wrkAry) -1;

echo "Nbr of elements is: $loop <hr>";

// Loop through the using a for loop

for ($i=0; $i<=$loop; $i++) {

      echo "The key is: $i / The value is: $wrkAry[$i] <br>";

}

?> Listing 5: Use array_values() to re-index the array.

This will give the following output:

Nbr of elements is: 6

The key is: 0 / The value is: Elvis Costello
The key is: 1 / The value is: Nick Cave
The key is: 2 / The value is: Interpol
The key is: 3 / The value is: The Police
The key is: 4 / The value is: Sea Pink
The key is: 5 / The value is: Nada Surf
The key is: 6 / The value is: Calexico

Let's Summarize

OK, now you know some of the pitfalls you might meet when working with arrays, and you also might have gotten a glimpse of how to avoid them.

The PHP array subject is a huge subject, and I'm only scratching the surface, so if you want to read up before I return with future tips, point your browser to this address and read on:

http://php.net/manual/en/language.types.array.php

You can download the examples here.

Till next time, happy PHPing and RPGing.

 

Jan Jorgensen

Jan Jorgensen is one of the owners of www.reeft.dk, which specializes in mobile and i5 solutions. He works with RPG, HTML, JavaScript, Perl, and PHP. You can reach him at This email address is being protected from spambots. You need JavaScript enabled to view it.

 

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: