I want to suggest the GO include format
<?php
require
(
'utila.php',
'utilb.php',
'utilc.php',
)
the same from include
or more , without comma
<?php
require
(
'utila.php'
'utilb.php'
'utilc.php'
)
or more, withou .php
<?php
require
(
'utila',
'utilb',
'utilc',
)
the same for other to, like define..
<?php
define
(
'K_TYPE_A' => 'a',
'K_TYPE_B' => 'b'
'K_TYPE_C' => 'c'
)
with or withou comma...
--
Att.
Mathias Grimm
http://mathiasgrimm.com.br
http://phpempregos.com.br
