Been programming PHP for 15 years, never ran into a single one of those cases that I can remember.
@aogunnaike Жыл бұрын
Thanks for the updates as usual
@nunomaduro Жыл бұрын
Love it!
@LuisSolis Жыл бұрын
I love PHP, thanks.
@aphex0008 Жыл бұрын
Thanks :)
@micasntna Жыл бұрын
Dayum
@PedroHenriqueRomio Жыл бұрын
Thanks for the updates xD
@etc3625 Жыл бұрын
My first love PHP (true love).
@saydfuad6914 Жыл бұрын
🔥🔥🔥
@indigoram89 Жыл бұрын
спасибо
@jecajSudbine10 ай бұрын
Waiting for scheduler extension! Also I would like to have builtin JWT functions and file sessions for API-s. Also FFS learn to write documentation. Documentation is for most of the "elite" PSR code is so horrible that even ChatGPT can't help you!
@Ролтун Жыл бұрын
I will wait until php 10 and then start learning
@cautionbug Жыл бұрын
Where's a good place to start if i have a feature idea for PHP? i've recently discovered a "need" to resolve method collision between two traits, but they have different signatures, so even if i alias one of them they're not compatible. Obviously i'll have to work out another approach, but it seems to me that if i'm giving one of the methods an alias, the signature conflict shouldn't matter anymore.
@nikolayivanov321 Жыл бұрын
Incrementing a non numeric variable is one of those "why the hell was this even allowed to begin with" things in PHP, glad to see it going away.
@angeljo602010 ай бұрын
For excel. are you even a programmer?
@FaizanAnwerAli Жыл бұрын
What is edge case? I need a video on that
@SF-eg3fq10 ай бұрын
it's always the deprectations 💀
@TravisFont Жыл бұрын
Void and null in PHP really needs to be fixed as they are not the same. The fact coming from a foreign interface and mixing them is just right out wrong. Curious what nonsense in the RFC is being discussed... This changes the meaning and behavior of the function(s).
@cautionbug Жыл бұрын
i've always disliked that a "void" return (i.e. no return statement) still returns null when the call is used in an expression. If it's void, it's void - cannot use. Void and null return types should have specific and distinct purposes.
@NedumEze Жыл бұрын
Thanks Brent. But, you could slow delivery down a bit, to help understanding.
@phpannotated Жыл бұрын
Well the goal of this video is to make people aware of which deprecations and breaking changes there are, and how to deal with them. Trying to explain every item in depth would lead to a long and rather boring video which is less relevant overall (because not everyone has to deal with all of these things). My suggestion would be to watch the video to get an overview, and then look into the specifics via the UPGRADING guide listed in the description. Hope that helps!