Queues and Stacks are inverse concepts in programming. While in the first one the processing is done in sequential order, in the other one the processing is done in reverse order of arrival. This means that the last element that comes to be processed will be the first to go out. As a matter of fact, considering this concept, the English term referring to stacks is LIFO (Last In First Out).

In PHP, processing a stack can be made as follows:

<?php
$stack = array();

array_push($stack, ‘v1’, ‘v2’);

print_r($stack);

$ultValue = array_pop($stack);

print_r($ultVaue);
print_r($stack);
?>

Sequentially what happens in this code is as follows: initially, it creates an array with two values. Following is used array_pop () method for the last value to be extracted; in the sample code the last value is stored in the variable $ ultValue. Next, the variable is then printed on the screen together with the array itself – but without the last value, since the array_pop () method excludes the last position in the array.

This simple logic can be used to process any type of stack, but a repeating structure needs to to be used for all array positions to be validated and processed.

Many services run using the concept of stacks, so understanding the concept and its application turns out to be indispensable in maintaining and creating such services.

Check out more content on our blog!
Learn all about Scriptcase.

By ,

June 3, 2015

a

You might also like…

Business Process Automation with Scriptcase

In the modern business world, operational efficiency is not just a goal. It's a necessity. With inc...

“We developed RISK4ALL, a SaaS platform that allows implementing GRC in an organization with total security and privacy.” (RISK4ALL)

Come and discover the success case of the Risk4all, software, a multilingual and multi-company SaaS...

You might also like…

Get new posts, resources, offers and more each week.

We will use the information you provide to update you about our Newsletter and Special Offers. You can unsubscribe any time you want by clinck in a link in the footer of any email you receive from us, or by contacting us at sales@scriptcase.net. Learn more about our Privacy Police.