23
Tue, Apr
1 New Articles

PHP and RPG: Together at Last

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

Today is as good a time as any to start.

 

In the previous two articles that I have written for this column, we took at look at what PHP is and does, and how to get started on the road to PHP expertise. Hopefully by now you've had a chance to start getting familiar with PHP syntax and how to create and test simple PHP scripts. And maybe you've even taken your first steps in object orientation by experimenting with creating and using PHP classes. If not, well, don't be too hard on yourself. Just think, today could be the first day of the rest of your life. Never too late to start, you know.

So what's next? Well, there's one very important thing that many times we leave until much later in the process. I think it's a good idea, however, to get working with this right off the bat—namely, interfacing your PHP scripts with your RPG programs.

We generally don't think about this first, only when we have a fancy old screen (page) ready in PHP and our RPG program to process the data entered on that page is set. Then we begin to freak out about how to tie these two together. Many people begin to hyperventilate dangerously at this point and a significant number pass out completely. But there's no need for that. Especially if you always carry a paper bag with you. Or you could make this less scary by getting used to it by practicing program calls between the two right off the bat, even if all your PHP page does is say "Hello World" and your RPG program just exists.

There are two directions to this, of course: calling an RPG program from PHP, and calling PHP from RPG. Let's start with the former, shall we?

 

Calling a PHP Script from an RPG Program

 

Suppose you have an RPG program. It gets data from DB2, plays around with it for a while, and then wants to display that data on a Web page you developed using a PHP script.

To do this, you need to use the PHP Command Line Interface tool (PHP CLI). This is an add-on to normal PHP, but most installations already have it, and if you're using Zend or MAMP/WAMP/LAMP (and I'm assuming you are), then it's there and ready to go.

To use PHP CLI, you need to use the Qshell tool. If you're unfamiliar with Qshell, the good news is you have plenty of company. Fortunately, you don't need to know too much to get CLI to work. Simply embed the PHP CLI command that accesses the PHP script in the QSH command that gets you into Qshell. For example, if you're using the Zend Server to provide your PHP instance and have a PHP script called script1.php that's sitting out in the IFS (which is where it should be), then the command you need to execute is this:

 

QSH CMD('/usr/local/Zend/Core/bin/php-cli/www/zendsvr/htdocs

                     /'folder x'/script1.php')

Here, 'folder x' is the name of the folder you have your PHP scripts in within htdocs. You don't need this folder, but it's a good way to separate your various scripts just in case you end up with a thousand of them. If you're not using Zend—say, you're using one of the XAMP versions—then the path to access php-cli will be different, but you get the idea.

There are actually two "calls" within the CMD: one to access PHP CLI and one to pick up your script.

If you're doing the call from a CL program, you can just use the QSH command statement above. If you're calling from within an RPG program, you'll need to embed the QSH command within a QCMDEXC command. Pretty simple either way. And you thought this was going to be hard.

 

Calling an RPG Program from a PHP Script

 

Now let's take a look at the converse. Or is it the inverse? Always got those two confused. I could take a moment now and research it so that I get it right, but let's face it: you don't know the difference between them either.

It's here that things get just a trifle more complex. And the reason for that is, how you do this will depend on exactly what version of the Zend Server you're on and how you got there. Now follow me here.

Traditionally, calling RPG from PHP was done by a set of Easycom-based functions originally developed by Aura, which were bundled together in something called the i5 Toolkit. This was incorporated into the Zend Server, so these functions became the default way to call RPG from PHP.

But, as often happens, things change, and recently Zend announced that they were no longer including the i5 Toolkit in the Zend Server and that they had replaced it with the new Zend PHP Toolkit. This is not based on the Easycom functions, so it's a bit different.

So which should you use? Well, that depends on what version of the Zend Server you're on. If you're on a version prior to 5.6 or are on 5.6 because you upgraded to it, then you still have access to the old i5 Toolkit. If however, you installed ZS 5.6 directly, you'll be using the new PHP Toolkit and you have to get the i5 Toolkit from Aura if you want to use it.

What's the difference between the two toolkits? In a nutshell, the i5 Toolkit is function-based—that is, it's procedural; it uses PHP functions to do its thing. The PHP Toolkit from Zend, however, is object-orientation-based and uses "methods" to do the magic. I know, I know; you're thinking, oh, man, I don't want to get messed up with no OO addicts. I better get the i5 Toolkit. But it's not that way, dude. You're just using these OO methods, not writing them. And be honest, isn't that a painless way to pull the BAND-AID off and get started in a small way with OO? But as I said, it's not as much a choice as it is dependent on what version of Zend Server you're on.

 

Using the i5 Toolkit

 

There are really four steps to calling an RPG program using the i5 Toolkit functions.

The first thing you have to do is establish a connection with the i. Remember, PHP is not native to the i, so they have to be formally connected for anything to happen. This is done with an i5_connect() function, which is part of the toolkit. There are three main parms that must be included (the others are optional): the server (either a DNS or IP address that identifies the i), the user ID, and the password for that user.

The next thing really has nothing to do with the i5 Toolkit, and that's to set up the array you're going use to pass the info that's going into your RPG program. Hopefully, by now you've had a chance to play with the array functionality in PHP so setting up this array will be second nature to you. When you set up this array, you have to specify, for each item in it, its name, whether it's input or output or input-output, the type of data it is (character, etc.), and the length.

Third, you need to "prepare" the program—that is, create a program object that can be used in the actual call. The prep step is accomplished by the i5_program_prepare() function. (There's something wrong with this Web site; when you click on this link, it gives you the screen for the i5_connect. To get to the prepare_program page, use the table of contents on the left side of the page, open up API Functions, then Program and Procedure Calls, and click on the i5_program_prepare link.)   This function includes three parms. The first is the name of the program you're preparing. The second is the array you just put together representing the data to be passed. The third is the variable you used to kick off the connect function. If you're familiar with PHP functions, you know what I'm talking about here; if not, then let me just say that the actual command for the connect step would be something like (! $connect = i5_connect( . . . ), so $connect would be used in parm 3 for the program prepare.

Fourth, you move values to the array created above. That is, in the second step you just created the array. Here you're moving the values to it that you want to pass to the program. You actually have to define the parms twice: once for input and once for output. Both will be used below.

And finally, you call the RPG program by using the i5_program_call() function. There are three parms with that function also: the variable carrying the program name, the array with the input parameters in it, and the array with the output parms in it.

And that's it. Pretty simple really. Oh, fine, I know what you're thinking, five steps, give me a break. But that's the way it is, and once you get used to it, you'll throw those five steps together like nothing flat. That is, assuming you're using the i5 Toolkit.

For more information and some great program examples, I strongly, strongly urge you to pick up a copy of The IBM i Programmers Guide to PHP by Kevin Schroeder and Jeff Olen from MC Press.

 

Using the Zend PHP Toolkit

 

But what if you aren't using the i5 Toolkit? What if you installed 5.6 directly instead of upgrading to it?

The difference between the two is that the PHP Toolkit is object-oriented in nature and uses methods. That sounds a bit more complicated, but there are actually fewer steps to using it, so that's a plus.

You start by instantiating the object, which sets up the connection. Then set up your parms array as above, call the program (no need to do the prepare step), and get your results from the array that's returned from the call.

All of the classes you need are pre-defined in the toolkit, so there's minimal work for you other than the steps above. And that's about it.

What? You wish I had gone into more detail on exactly how you would use this toolkit? Hmmm, I guess I wish I had too. What can we do about that? Hmmmm. Nope, can't think of anything. Oh, wait. I know. I could write my next column on that. Genius. As a great man once said: Sometimes I amaze even myself. Look for it in December, or maybe it's January. Can't remember.

Until then, get started with this. Start with the call from RPG (or CL) to PHP, and then move on to the converse/inverse. Remember, what's important here is not that you understand everything today, but that you start playing with things today. After all, you could get a nasty bump on the head if you passed out unexpectedly.

 

David Shirey

David Shirey is president of Shirey Consulting Services, providing technical and business consulting services for the IBM i world. Among the services provided are IBM i technical support, including application design and programming services, ERP installation and support, and EDI setup and maintenance. With experience in a wide range of industries (food and beverage to electronics to hard manufacturing to drugs--the legal kind--to medical devices to fulfillment houses) and a wide range of business sizes served (from very large, like Fresh Express, to much smaller, like Labconco), SCS has the knowledge and experience to assist with your technical or business issues. You may contact Dave by email at This email address is being protected from spambots. You need JavaScript enabled to view it. or by phone at (616) 304-2466.


MC Press books written by David Shirey available now on the MC Press Bookstore.

21st Century RPG: /Free, ILE, and MVC 21st Century RPG: /Free, ILE, and MVC
Boost your productivity, modernize your applications, and upgrade your skills with these powerful coding methods.
List Price $69.95

Now On Sale

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: