Hello, I have a question on the following:
Class: "Test1.php"
<?php
class Teste1{}...
?>
- Ex1- include 'Test1.php'
- Ex2- include_once 'test1.php'
- Ex3- require_once 'Test1.php'
Is it possible to call test1 (in minuscule), as in Ex2? Will it work?
I've seen in some blogs that it's only in php 4, so it's not correct to be case sensitive, is that right?
Thank you