[PHP-DEV] standardize php builtin functions

2021-07-18 Thread Abdul Haq Sheikh
Hello Internals, PHP has built in functions for string, array and math etc. But some string and array functions start with Str_* and array_* but not all. If we standardize php builtin functions so all string functions start with str_*, and all array functions start with array_* and all math functi

[PHP-DEV] include vendor/autoload.php automatically

2021-03-27 Thread Abdul Haq Sheikh
If we want to use composer packages, we have to include 'vendor/autoload.php', and if we don't have a front controller design pattern, we must include 'vendor/autoload.php' on every/most files. Why not to auto include 'vendor/autoload.php' file (if vendor folder exists)? * PHP will use include_once