Project Z Help thread.

Need help with an engine or coding not on the list? Need help with a game or the website and forums here? Direct all questions here.
User avatar
Jackolantern
Posts: 10891
Joined: Wed Jul 01, 2009 11:00 pm

Re: Project Z Help thread.

Post by Jackolantern »

PHP actually handles much of the details when it comes to types, since it is a dynamically typed language. This is good and bad. The good is that manual typing can be a headache. The bad is that odd errors like this where the PHP interpreter handles a type wrong can be difficult to pinpoint. The opposite of dynamic typing is static typing, which means that every variable must be declared with its type before it can be used, and you can only store matching types in any given variable (you cannot store a floating-point number in an integer variable).

Personally, I prefer statically typed languages, but that is likely just because that is what I learned to program with.
The indelible lord of tl;dr
Post Reply

Return to “Advanced Help and Support”