25
Thu, Apr
1 New Articles

TechTip: Starting at the Beginning with PHP Arrays

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

Learn about basic PHP arrays and how they're defined and looped.

 

If, like me, you have begun to use PHP in conjunction with RPG, you'll very soon be using the arrays in PHP. You are of course familiar with arrays in RPG, and arrays in PHP work almost the same except that there are more than 75 functions that can be used on arrays in PHP. When you start to dig into them, you'll wish that the compiler guys at IBM would start looking into them as well.

 

In this TechTip, I'll show you a few functions that I find very useful, which I'm sure will encourage you to look into this huge subject more deeply.

Defining Arrays and Looping in Arrays

When you start working with arrays in PHP, you'll notice that one thing is very different from RPG: PHP arrays are zero-based. That means that the first element in a PHP array is array element zero, and that's one of the main errors an RPG programmer encounters in the beginning.

 

There are three types of arrays in PHP:

 

 

  • Numeric arrayThis is an array with a numeric index as we know it from RPG.
  • Associative arrayThis is an array where each id key is associated with a value. This is not something we know from RPG, but it's very useful when you get the hang of it.
  • Multidimensional arrayThis is an array containing one or more arrays, and we know it from RPG. You can combine a data structure and an array and get the same functionality. These will be covered in a later TechTip.

 

When defining a PHP array, the syntax is like this:

 

array(key => value)

 

Parameter

Description

Key

The   key is optional. The key can be either numeric or string. If the key is not   set, an integer key will be generated, starting at 0 (zero-based).

Value

The   value is required. It specifies the value of the element.

 

 

Let's try to define a few arrays.

 

Example 1: Define a numeric array and print out the content.

 

<?php

 

// Define an array

$wrkAry = array("0"=>"Costello","1"=>"Cave","2"=>"Interpol");

 

// Print out the array

print_r($wrkAry);

 

echo "<hr>";

echo $wrkAry[0] . '<br>';

echo $wrkAry[1] . '<br>';

echo $wrkAry[2] . '<br>';

 

?>

 

 

As you can see in example 1, we define the array using the array() function, and then we fill the array using the key => value syntax.

 

We print out the whole array using the print_r() function and also print out the array using the echo function, specifying each array element starting with zero.

 

Example 2: Define an associative array and loop through it.

 

<?php

 

// Define an associative array

$wrkAry['a'] = "Elvis Costello";

$wrkAry['b'] = "Nick Cave";

$wrkAry['c'] = "Interpol";

$wrkAry['d'] = "The Police";

$wrkAry['e'] = "Sea Pink";

 

echo "<hr>";

echo "Associative Array - \"foreach\" loop";

echo "<hr>";

 

// Loop through the array using foreach

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

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

}

 

?>

 

In example 2, we define an associative array, which means that the index value is a stringin this, case a to e. It could have been anything, such as names or months.

 

To loop through the array, we use the foreach function. This way of looping gives us access to both the value and the key. You can see the syntax in the example.

 

Of course, you can also loop through an array like you do in RPG, but this way, the array must be numeric, as shown in example 3.

 

Example 3: Loop through a numeric array using a for loop.

 

<?php

 

// Define a numeric array

$wrkAry[0] = "Elvis Costello";

$wrkAry[1] = "Nick Cave";

$wrkAry[2] = "Interpol";

$wrkAry[3] = "The Police";

$wrkAry[4] = "Sea Pink";

 

echo "<hr>";

echo "Numeric Array - \"for\" loop";

echo "<hr>";

 

// Loop through the using a for loop

for ($i=0; $i<=count($wrkAry)-1; $i++) {

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

}

 

 

?>

 

In example 3, we use a "normal" for loop as we know it in RPG (and JavaScript for that matter). Note that we use the count() function to find the number of elements in the array. Also note that we subtract 1 because the array is zero-based and the count() function will return the value 5, so to avoid a PHP error, we subtract one to make the loop work.

Just the Beginning

This is just the beginning, and you can download the code here. In upcoming issues of TNT, I'll show you some more PHP array examples that will make your PHP programming life a little easier I hope. You'll be wondering, "Why don't we have that in RPG?"

 

And, yes, I know that I still owe you another "jQuery Fundamentals" TechTip. I'm working on that, and you'll see it soon.

 

Till then, I wish you all a happy new year.

 

 

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: