I need to declare two functions with different names (small 'i' and big "I").
function i() {
echo 'Small i';
}
function I() {
echo 'Big I';
}
PHP's output is:
PHP Fatal error: Cannot redeclare I()
Why? Small "i" is not big "I".
I tested it in Linux and in Windows.