1748 1154 1435 1949 1251 1336 1663 1240 1882 1658 1499 1197 1312 1224 1282 1605 1358 1031 1773 1252 1983 1600 1959 1173 1852 1232 1407 1218 1739 1360 1979 1650 1832 1894 1498 1206 1048 1057 1777 1600 1603 1345 1667 1910 1565 1651 1333 1833 1484 1225 1315 1561 1225 1100 1576 1620 1518 1698 1886 1081 1328 1213 1930 1507 1799 1174 1571 1462 1017 1180 1717 1750 1225 1051 1710 1563 1052 1168 1341 1334 1600 1694 1280 1803 1912 1717 1717 1438 1917 1210 1739 1805 1822 1817 1453 1651 1071 1449 1730 PHPnews.io | The amazing payoff goes here

PHPnews.io

Overview for 'igor'

Re: Recursion instead of goto

Written by igorw / Original link on Aug. 24, 2019

Re: Recursion instead of goto Why hello! Thank you for asking this most excellent question! I have indeed considered alternatives to the goto. I have evaluated them to a great extent, and I am happy to present the results to you here. When the PHP parser reads a source file, that source code is com…


The Right Way

Written by igorw / Original link on Aug. 24, 2019

The Right Way Community It's a word that a lot of people like to throw around as something they believe in. It's a fuzzy word that makes humans feel warm and fuzzy inside. It is a way for a group of individuals to co-exist in a space of shared values. Communities are useful, they unite us. They def…


Reasoned PHP

Written by igorw / Original link on Aug. 24, 2019

Reasoned PHP Using logic to run your programs backwards! This is a transcript of a talk I gave at the Berlin PHP usergroup in August 2014. Logic This presentation is going to be about using logic to run your programs backwards. Let's begin with talking about logic. One of the first logicians was Ar…


Functional Library: Null

Written by igorw / Original link on Aug. 24, 2019

Functional Library: Null Tony Hoare famously described the invention of null references as a Billion Dollar Mistake. Nulls are something we need to deal with in almost any language. Any value that can be null must be null checked. An example of a very common error that will arise when nulls are pre…


Functional Library: Traversal

Written by igorw / Original link on Aug. 24, 2019

Functional Library: Traversal Traversing associative data structures in PHP is fun. Said no one ever. The problem is a common one if you're processing any kind of data, for example a response from a JSON API. You need to access some nested structure, but you don't know if what you're accessing actu…


Functional Library: Iteration

Written by igorw / Original link on Aug. 24, 2019

Functional Library: Iteration Welcome to the functional library. This series will explore the state of functional programming in PHP and highlight some libraries for common tasks. This post will look at iteration and lazy operations based on a sequential abstraction. Sequence Yes, you heard right.…