Hi There
I have come across some code in someone's API that I wish to use myself and I wonder if anyone could advise me on how to use properly..
I am able to call function
<?php
playerProfile($array);
?>
without any return value.
Subsequently, in my php I can retrieve with -
<?php
print $array["variablename"]; //this has a value inside of it
?>
It seems like calling that function creates an $array with local scope, yet the initial call to playerProfile() did not have a return value..
Does anyone know what I must put in the function definition to mimic this behaviour? Do I need a particular construct/keyword..
Thanks in advance and Season's greetings
Jon
Edit/Delete Message