[PHP] Rusu Ionut, PHP Question

2009-03-26 Thread Ionut Rusu
Hello my name is Rusu Ionut,  i'm from Romania and i was wondering if you
have the time to to explain to mea little situation that i encountered.
So i have a class:  *index *and inside this class i have declared a public
array containing some classes, inside the constructor of the class i extract
the array variables and call the include function to "include" the array
variable which is the reference of an php class file.
My Question to you is : how is this possible
The php doesnt outputs any errors, and i was wondering if this style of
codying is making the server to work slower



here is my code.



class index
{
public $fisiere=array
  (
  "*main_classes/db/functii.class.php*",
  "*main_classes/db/mysql.class.php*",
  "*main_classes/sp/setari_pagina.class.php*",
  "*main_classes/admin/admin.class.php*",
  "*main_classes/captcha/captcha.class.php*"
  );

/*-*/

public function __construct()
{
$eroare="";
foreach($this->fisiere as $key=>$value)
{
if(!file_exists(url_dinamice.$value))
{
*echo "**error!";*
}
else
{
  *  include url_dinamice.$value;*
}
}
   }
}
$indexObj=new index();


[PHP] Re: Rusu Ionut, PHP Question

2009-03-26 Thread Ionut Rusu
sry to boder you again but i didnt quite understood youre answer, i got the
part where to add the include files on the top of the file or with
require_once statment, but i still dont understant how is it posiible to add
classes to the constructor with the include statment and not trigger a
nested class error..

is it corect to add include files( php classes ) to the constructor, and if
so how does php do it
thank you!!!