Not sure that i understood about ampersands but thank you so much
PHP Code:
plugin_init()
{
new x = 1
new y = 2
// I want to make sure. If i change them in funcA/B
funcA(x)
funcB(y)
// then here, after execution, x will be 3
// and y still 2?
}
funcA(&x)
{
x = 3
// even with
return PLUGIN_HANDLED
}
funcB(y)
{
y = 4
// yes?
return PLUGIN_HANDLED
}
What is "reference parameters"? Sometimes i see "by reference", "reference parameters" and so on and can't figure out what it is
__________________