I can't find out what this 'thing' does:
-> (is it something to do with passing a value into that function or something..
For example:
Hope someone can explain this simple problem to me.
TIA.
Thomas Shearer
Multimedia Developer
-> (is it something to do with passing a value into that function or something..
For example:
Code:
<?php
class foo
{
function do_foo()
{
echo "Doing foo.";
}
}
$bar = new foo;
$bar->do_foo();
?>
Hope someone can explain this simple problem to me.
TIA.
Thomas Shearer
Multimedia Developer