Duplicate
The last couple of days I'm busy writing a home brew web application in PHP, a rather popular dynamic language. Coming from a static languages background, mainly Java, some things feel weird to me, and I would like to hear other opinions from people who are maybe more experienced in these dynamic languages. What they like about it, what they don't etc.
What feels really weird to me for instance (at least in PHP) is the inability to type hint method args, variables and function returns. What if a specific method arg the user provides is a string instead of an int, or null, or ...? What does a function return? I feel that this form of coding is not self documenting for starters and also not really robust. A least a lot of checks should be performed on incoming methods args to make the application somewhat robust and safe in my opinion as users of a particular method may not know how fragile it is. The amount of checking could get ridiculous, while type hinting would make all of these checks obsolete.
Do you feel that larger applications can be successfully built and maintained with these dynamic languages?
Looking forward to read other insights and opinions on this!
