Here is a list of all deprecated functions and things in latest PHP 8.1.
php
COMPLETE list of changes in PHP 8.1 – Features & Deprecations – Overview, October 2021
Finally we have a Release Candidate v4 for PHP 8.1. What have changed? and what’s got added new? But mainly what did they decided to drop from the language? Read this and surprise your boss/team with super sweet knowledge of new technologies!
Read moreCOMPLETE list of changes in PHP 8.1 – Features & Deprecations – Overview, October 2021
PHP8 – The Hell is This? EASY EXPLANATION
It’s early December 2020 and yes we have received a stable new major version of PHP8. Is it good? better than v7? The hell is that JIT and how easy is to swap your v7 application? Well don’t go anywhere and read this article my PHP developer…
Setup Laminas MVC Skeleton
Fancy starting new adventure? Take a look at Laminas MVC, the most innovative MVC framework. Quickly begin with setting up a Skeleton app and running it on your local XAMPP environment.
Laminas: MVC Framework for PHP – Book Review
Guest post written by: Wojtek Marczak.
Put aside any PHP framework with MVC architecture which you used to work with just for a little moment and make a room for new pretender to the crown. Start to expect more from your framework, put less effort to do the same things as you used to before. How, you would ask? Ladies and gentleman, I present to you the Laminas MVC, the chosen one in web frameworks for the new 2020 era!
Block any spam links in comments in WordPress
How to make your WordPress site more secure is probably your most important goal. Hundreds of spam bots crawling your site can make your head hurt not just once. So why just not block any of those scammers and avoid spending your time on marking as a spam posts? Well here is the quickest way to achieve it without any plugins!
Call native C code in PHP – Foreign Function Interface
The Foreign Function Interface (FFI) is a simple way to call any native functions, access variables or create data structures defined in original C language.
Read moreCall native C code in PHP – Foreign Function Interface
PHP 7.2: Encrypted ZIP files
Are you missing more WinRaR or 7zip features in PHP like using password for encrypting? Well say no more and update to PHP 7.2!
PHP 7.3 Trailing commas in function calls
The ability to have a trailing comma in arrays is already built-in, so why not have it extended to function/method parameters?
PHP 7.1: Void return types in functions and methods
Since PHP 7.1 we can start to see a real good progress with void
return types. We can now specify a null type of returned value from a function. Sometimes we may want to specify the function which should not return any value to the user.
Read morePHP 7.1: Void return types in functions and methods