|
Posted by Ivαn Sαnchez Ortega on 05/26/06 09:31
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Chris wrote:
> I am calling the function like this :
>
> $BrokenArray = array();
> $BrokenArray = $this->fileTree($this->ProjectRoot,".c");
>
> foreach (($this->fileTree($this->ProjectRoot,".c")) as $wibble)
> {
> print "Broken Array : $wibble <br>\n";
> }
Debug that by using var_dump or print_r :
$BrokenArray = array();
$BrokenArray = $this->fileTree($this->ProjectRoot,".c");
var_dump($BrokenArray);
By the way, remember that PHP is a dinammically-typed language: $BrokenArray
is an array at first, but if you assign it a value of other type (an
integer, for example), it becomes that type.
- --
- ----------------------------------
IvΓ‘n SΓ‘nchez Ortega -i-punto-sanchez--arroba-mirame-punto-net
There may still be two superpowers on the planet: the United States and
world public opinion.
-- Patrick Tyler
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)
iD8DBQFEdqDC3jcQ2mg3Pc8RAqiuAJ9lALLpM6imxVP5J9Zvn6nibiK3BgCcDlyI
QilzLASAx7ZZrIoe7S5mkB4=
=bi1H
-----END PGP SIGNATURE-----
Navigation:
[Reply to this message]
|