I would like to configure my environment (php.ini and apache) to be as strict as possible. for example:
Given a class in path c:\xampp\htdocs\test\classes\My.Class.php
I would like that
include('\classes\my.class.php');
to fail. (even on windows)
And I would like that
include('./classes/My.Class.php');
to joy. case sensitive
The main reason is that appfog is strict with paths, does not allow backslash in it and is case sensitive.

ALLOW_FORWARD_SLASH = FALSEPATH_LINKS_CASE_SENSITIVE = TRUEDOT_TO_START_A_PATH = TRUE– frenesim May 6 at 14:20