vedran
vedran
About
- Username
- vedran
- Joined
- Visits
- 39
- Last Active
- Roles
- Member, OG
- Thanked
- 32
Comments
-
(Quote) Same, expected to ship by October 28 and order is still processing
-
Is it really needed tho? I know I'm not super active here, but I don't really remember seeing that many necroposts to the point where it would even slightly annoy me. Personally I would be more annoyed with the big red warning while reading some old…
-
(Quote) No drama and people just being nice to each other is probably the main reason I don't visit this place very often. I know, I'm a bad person, LET has ruined me
-
(Quote) That's why I dislike Pi. It's supposed to be like $5, $15, $35 or whatever but in the end when you buy it in Europe it ends up being much more. Even 15,90 € would be (kind of) acceptable, but I remember buying the original Pi and instead of …
-
(Quote) One of the reasons people hate PHP. Not only it allows you to write bad code but pretty much encouraged it for way too long.
-
Ah, I missed the fact the first one is within if statement so it might or might not be set. And if not you get the error in the second one. At this point probably best to just initialize the variable at the beginning of the function (or anywhere be…
-
Why would you remove the second? :# Remove just the first one
-
(Quote) Yes in general, in this case we know for sure since it's inside a user defined function (and it's not declared as global or static) so it's scope is local to that function and won't be available elsewhere. Of course assuming this is full uns…
-
(Quote) Replace .= with = It's not an error, it's a notice, you are trying to append text to a variable which is not defined yet. You probably have a separate custom php.ini for other sites and not site A, and looks like PHP8 changed default error…