3
Hello I’m having a doubt on the following:
Class: "Teste1.php"
<?php
class Teste1{}...
?>
- Ex1-include 'Teste1.php'
- Ex2- include_once 'teste1.php'
- Ex3- require_once 'Teste1.php'
Is it possible to call teste1 (in minuscule), as in Ex2? It will work?
I saw in some blogs that is only in php 4, from there is not correct for being case sensitive, this certain?
Thank you