Jump to content

array() construct


Go to solution Solved by Barand,

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

  • Solution

 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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.