php[architect] logo

Want to check out an issue? Sign up to receive a special offer.

In the Magazine

World Community

March 2024

In our industry, you can’t be too set in your ways. You have to always be open to learning. You keep learning, or you fall behind. That’s not to say some of us older developers in the industry can’t teach new people some old tricks that are still relevant. Whether you’re new to the game and writing your first “Hello World,” or you’re a seasoned developer with battle scars in a Git repository to prove it, you should never pass up the opportunity to sit down with others in your industry and talk about ideas, patterns, and challenges. This has always been a challenge for me. I’m not very social, but I have made some of the best friendships with people at conferences, user group meetups, and online in the PHP community. I encourage you to step out of your comfort zone and introduce yourself to new people when you can.

View articles

Bad Bug Bounties

January 2024

View All Past Issues »

Books

View All Books »

The Complementary PHP Testing Tools Cookbook

Learn how a Grumpy Programmer approaches improving his own codebase, including all of the tools used and why.

PHP Web Development with MySQL

A Hands On Approach to Application Programming

Beyond Laravel

An Entrepreneur's Guide to Building Effective Software

php[podcast]

All Episodes »

Articles and News

More News

Getting Up And Running With Laravel Sail

February 14, 2024

Docker is one of the best ways to have a consistent environment across multiple computers, but for new developers (and even not-so-new developers), it can be hard to understand and set up. Thankfully, the Laravel team has created Laravel Sail to make Docker a much easier tool to use when we’re working on Laravel projects. […]

Getting Started With Docker

February 6, 2024

“Works on my machine” it’s a common refrain before closing out a bug ticket. This hides the fact that something is different between your development and production environments. There are a bunch of ways to resolve this problem but one of the easiest is to use a solution like Docker to make sure our development […]

Creating Finite State Machines in PHP 8.3

January 31, 2024

As developers, we’re constantly managing where entities are in some flow. Entities like blog posts, multi-step user registration, and even UI elements can exist in multiple states, and we’re responsible for making sure that they’re always in a valid state. If something unexpected happens in those flows, it can cause bugs, which can cause us […]

What Are Finite State Machines

January 29, 2024

As developers, we’re constantly managing where entities are in some state. Entities like blog posts, multi-step user registration, and even UI elements can exist in multiple states, and we’re responsible for making sure that they’re always in a valid state. If something unexpected happens in those flows, it can cause bugs, which can cause us […]

Stacks With SplStack

January 2, 2024

As developers, we have times when we get to process a lot of data. Sometimes it’s a few kilobytes of data and we don’t need to worry about the performance because computers are so fast. When we’re looking at gigabytes or more of data then we need to be aware of the performance of our […]

Getting Started With the Pest Testing Framework

October 19, 2023
Getting Started With the Pest Testing Framework

As a practitioner of test-driven development, I’m always looking for different ways to write test code faster. Sometimes, this comes as little things like learning a faster way to run my tests using a built-in editor setting, but sometimes it’s a whole new way to write my tests. In this article, we’re going to discuss […]

Let’s Get Our OSS Ready For Hacktoberfest 2023

September 27, 2023
Lets Get Our OSS Ready For Hacktoberfest 2023

As maintainers of open source projects, it’s important to try and bring people into our project so that we’re not the only ones maintaining the project. There are lots of ways to do this, like creating blog posts about the project, contributing articles to magazines, or talking about the project at conferences. Another option is […]

Scheduling Tasks With CRON

September 1, 2023
Scheduling Tasks With CRON

      As developers, most of the time, our websites perform some kind of action based on a user clicking a button or typing some data, but there are some things we need to be able to do outside of the normal web request flow. For example, we should be running our backups at […]