Jump to content

array() construct


wdseelig

Recommended Posts

I am looking at the following code snippet:

 

               functioncall(array(),$variable)

 

I've looked everywhere, but cannot find what this is supposed to mean.

 

In the function that is called I see

 

            function functioncall($var = array(), $var1 = array())

 

Is this some kind of cast??

 

Thanks!

Link to comment
https://forums.phpfreaks.com/topic/292953-array-construct/
Share on other sites

 functioncall(array(),$variable)

 

is calling the function and passing two parameters. The first is an empty array, the second is whatever is in $variable. No different from

$a = array();
$b = array(1,2,3);
functioncall ($a, $b);
Link to comment
https://forums.phpfreaks.com/topic/292953-array-construct/#findComment-1498887
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.