Is there a way in PHP to include a constant in a string without concatenating?
define('MY_CONSTANT', 42);
echo "This is my constant: MY_CONSTANT";
Is there a way in PHP to include a constant in a string without concatenating?
define('MY_CONSTANT', 42);
echo "This is my constant: MY_CONSTANT";
As others have pointed out you can not do that. PHP has a function
constant()
which cant be called directly in a string but we can easily work around this.and a basic example on its usage:
Here are some alternatives to the other answers, which seem to be focused mostly on the "{$}" trick. Though no guarantees are made on their speed; this is all pure syntactic sugar. For these examples, we'll assume the set of constants below were defined.
Using extract()
This one is nice because the result is identical to variables. First you create a reusable function:
Then call it from any scope:
Here, it lowercases the constants to be easier on your fingers, but you can remove the array_change_key_case() to keep them as-is. If you already have conflicting local variable names, the constants won't override them.
Using string replacement
This one is similar to sprintf(), but uses a single replacement token and accepts an unlimited number of arguments. I'm sure there are better ways to do this, but forgive my clunkiness and try to focus on the idea behind it.
Like before, you create a reusable function:
Then call it from any scope:
You can use any replacement token you want, like a % or #. I used the slash here since it's a bit easier to type.
To use constants inside strings you can use the following method:
How does this work?
You can use any string function name and arbitrary parameters
One can place any function name in a variable and call it with parameters inside a double-quoted string. Works with multiple parameters too.
Produces
Anonymous functions too
You can also use anonymous functions provided you're running PHP 5.3+.
Produces properly escaped html as expected.
Callback arrays not allowed!
If by now you are under the impression that the function name can be any callable, that's not the case, as an array that returns true when passed to
is_callable
would cause a fatal error when used inside a string:Keep in mind
This practice is ill-advised, but sometimes results in much more readable code, so it's up to you - the possibility is there.
It is fun that you can use keyword 'const' as a name for your function to prevent namespace littering:
You can also use $GLOBALS to propagate 'const' function all over the code:
Unsure is it safe for future using. And what is worse - it's still looks ugly.
No.
With Strings, there is no way for PHP to tell string data apart from constant identifiers. This goes for any of the string formats in PHP, including heredoc.
constant()
is an alternative way to get hold of a constant, but a function call can't be put into a string without concatenation either.Manual on constants in PHP