Is type hinting helping the performance of PHP scripts?

krush

New Member
Type hinting helps the compiler to assume the type of the variable, but, as the PHP is a dynamic scripting interpreted language, the question came to my mind if it's possible that type hinting even makes the runtime faster or not?
 
Back
Top