Re: [PHP] Scope of the variables around PHP class

2008-09-23 Thread clive
Define a class function and pass the array via this function or pass it 
via the classes constructor.


VamVan wrote:

Hello Guys,

I have a problem here. I hope you can help me resolving it.

Please see the code below

array.php has $array1 = ('hello'='heelo',)

require_once('array.php');

class Classa {

}

How can I access the array values in my class? I want to understand the
scope.

Thanks

  




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Scope of the variables around PHP class

2008-09-22 Thread VamVan
Hello Guys,

I have a problem here. I hope you can help me resolving it.

Please see the code below

array.php has $array1 = ('hello'='heelo',)

require_once('array.php');

class Classa {

}

How can I access the array values in my class? I want to understand the
scope.

Thanks


Re: [PHP] Scope of the variables around PHP class

2008-09-22 Thread Chris

VamVan wrote:

Hello Guys,

I have a problem here. I hope you can help me resolving it.

Please see the code below

array.php has $array1 = ('hello'='heelo',)

require_once('array.php');

class Classa {

}

How can I access the array values in my class? I want to understand the
scope.


You can't, unless you make $array a global variable which is not a 
proper solution.


You could do something like this:

class MyClass {

  private $my_array = array();

  function __construct()
  {
require_once ('array.php');
$this-my_array = $array1;
  }

}

Then you can use $this-my_array inside the class and it's automatically 
loaded when you create a new object.


--
Postgresql  php tutorials
http://www.designmagick.com/


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php