Consider this PHP code:
call_user_func(array(&$this, 'method_name'), $args);
I know it means pass-by-reference when defining functions, but is it when calling a function?
I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...
No comments:
Post a Comment