Hello folks! welcome back to a new edition of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP compact() Function.
The built-in compact() function creates an array from variables and their values.
For each of these, compact() looks for a variable with that name in the current symbol table and adds it to the output array such that the variable name becomes the key and the contents of the variable become the value for that key. In short, it does the opposite of extract().
The built-in compact() function creates an array from variables and their values.
For each of these, compact() looks for a variable with that name in the current symbol table and adds it to the output array such that the variable name becomes the key and the contents of the variable become the value for that key. In short, it does the opposite of extract().
Syntax
Following below is the syntax to use this function -
compact($var1, $var2...);
READ: PHP arsort() Function
Parameter Details
Sr.No | Parameter & Description |
---|---|
1 | var1(Required) It can be a string with the variable name, or an array of variables. |
2 | var2(Optional) It can be a string with the variable name, or an array of variables. |
Return Value
This built-in returns the output array with all the variables added to it.
Example
Try out the below example -
<?php $city = "Lekki"; $state = "LAG"; $event = "New Year"; $result = compact("city", "state", "event"); print_r($result); ?>
Output
When the above code is executed, it will produce the following result -
Array ( [city] => Lekki [state] => LAG [event] => New Year )
READ: PHP asort() Function
Alright guys! This is where we are going to be rounding up for this tutorial post. In our next tutorial, we are going to be discussing about the PHP count() Function.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.