vote up 8 vote down star
1

I have a function that is effectively a replacement for print, and I want to call it without parentheses, just like calling print.

# Replace
print $foo, $bar, "\n";

# with
myprint $foo, $bar, "\n";

In Perl, you can create subroutines with parameter templates and it allows exactly this behavior if you define a subroutine as

sub myprint(@) { ... }

Anything similar in PHP?

flag

4 Answers

vote up 10 vote down check

print is not a variable functions

Because this is a language construct and not a function, it cannot be called using variable functions

And :

Variable functions

PHP supports the concept of variable functions. This means that if a variable name has parentheses appended to it, PHP will look for a function with the same name as whatever the variable evaluates to, and will attempt to execute it. Among other things, this can be used to implement callbacks, function tables, and so forth.

link|flag
vote up 6 vote down

No, you can't do that in PHP. Print isn't actually a function, it's a "language construct".

link|flag
vote up 5 vote down

Only by editing the PHP codebase and adding a new language construct.

-Adam

link|flag
vote up 0 vote down

Nope, PHP won't allow you to do that.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.