Posts marked with “php”
Testing Strategy With the Help of Static Analysis
By Ondrej Mirtes. In this article, I’d like to introduce you to the concept of type safety and how it can improve the reliability and stability of your code. Once your code is more type-safe, and that fact is verified by automated tools, you can cherry-pick which parts of your application need extensive unit tests and where you can rely just on well-defined types.
Episode 9: Testing in Practice
In this Episode Our hosts, Eric van Johnson and John Congdon dive into Testing in Practice and the April 2018 issue of php magazine and interview Robert Basic, one of the contributors to Mockery. Oscar talks about the importance of training for employees and rants against image slideshows.
Testing in Practice – April 2018
PHP Unit, Mockery, Type Hints, Async PHP, building a REST API, training programs, PHP isolation and security, serverless computing, Laravel auth, and more.
Episode 8 – Long Running PHP
Eric and John go over the March features about writing daemons with PHP, Linux containers beyond Docker, accessibility, code reviews, and interview Chris Pitt, about the community in South Africa and his article on Evolving PHP. Oscar shares his experience recently upgrading an application to PHP 7.
Long Running PHP – March 2018
PHP Daemons, Evolving PHP, containers, accessibility, Lumen, code reviews, signing git commits, running a user group, and more.
PHP Daemons and Long-Running Processes
Have you ever had a cron job filled with *? Had a database field called checked_out you used to make sure one process didn’t try to do the work another process was trying to do but hadn’t finished yet? Logged into a server late at night to restart the report job? Let’s talk about a […]
Evolving PHP
PHP is not a new language. It began as a template layer for C applications, but it has become so much more. Just as the language has evolved, so too have how it is now used. Today, there are some who use it for asynchronous architecture and others who advocate for functional programming. These concepts […]
Know Your Tools – February 2018
Containers, Drupal + Symfony, Evaluating Tools, Onboarding, Application Encryption, Laravel Scout, and more
Episode 6: Setting Up to Succeed
Eric and John chat with Joe Ferguson about Laravel collections. They also discuss the January features on background processing with queues, securing your website, PHP Generators and more and more. Oscar looks at PHP support and RFCs coming in 2018.
PHP Sessions in Depth
Sessions in PHP are often taken for granted. A session is a magic array which persists across page loads and holds user-specific data. It’s a fantastic and integral part of most web applications. But when misused, sessions can cause substantial security holes, performance and scalability problems, and data corruption. A deep understanding of sessions is vital to production web development in PHP.