Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to name variables in a Java-like manner in PHP, such as by removing the need for a $ sign each time? If so, how can I enable the setting which does this?

share|improve this question
4  
Can you explain why you'd want to do this? – ceejayoz Apr 6 '09 at 21:16
2  
It may look weird at first, but it's actually quite a useful feature. – troelskn Apr 6 '09 at 21:26
Just sick of typing $ signs all the time, java and other languages are great in terms of this. How is it a useful feature troelskn? – Click Upvote Apr 6 '09 at 21:42
2  
The $-sign is usefull in a way that you can see what is a var, and what is not in a split second. – Pim Jager Apr 6 '09 at 23:07
1  
Nothing I hate more than a language misfeature that people justify because "oh, it's okay because any good IDE will make that a non-issue". People do that with PHP's pathetic failure to catch simple variable name typos until runtime, and it's unacceptable. – chaos Apr 10 '09 at 17:46
show 5 more comments

5 Answers

up vote 51 down vote accepted

No.

share|improve this answer
3  
Couldn't have said it better myself. – Chacha102 Jul 18 '09 at 16:45
5  
Sorry, but 36 upvotes? Really? – Daniel Sloof Jul 19 '09 at 13:23
Don't hate the player, hate the player character. – chaos Jul 19 '09 at 13:35
Now it is 48, really. – Adam Arold Mar 8 '12 at 17:43

Sorry, it's not possible. The closest you'll get are constants:

define('CONS', 5);
echo CONS;
share|improve this answer
2  
He clearly said "variables", which isn't "close" to constants in any real sense at all. – Rob Jul 19 '09 at 1:18
3  
It is quite the opposite in fact. – akway Jul 22 '09 at 7:17

It's like asking Java to be non-strong-typed:

str = "some string";
System.out.print(str.contains("some"));

Makes no sense whatsoever.

share|improve this answer

Nope. Variables in PHP must start with $.

The other approach is to use constants.

share|improve this answer
Constants aren't "another approach" to variables if you need to modify the contents of the variable. – Rob Jul 19 '09 at 1:18

I trust the other answers in that this must be impossible.

While I personally hate PHP, everybody has some good characteristics. One reason the PHP $ is very nice has to do with variable interpolation:

$bob = "rabbit"
$joe = "dragon-$bob"  // ==> dragon-rabbit

That's pretty nice and short. In Ruby, since variables do not have to have any particular starting character, you have to type a bit more:

bob = "rabbit"
joe = "dragon-#{bob}"

And the same thing happens in Java (well, I left Java when you still had to use either StringBuffer or concatenate with " + bob + "... I'm sure that's gone by now).

So the dollar sign is annoying and ugly, but here's at least one advantage (there must be more).

At the same time, if you try to write really nice PHP code (in spite of what you see around), you will start to see your code as elegant, and those dollar signs will be symbolic for... money!

share|improve this answer
Good point. I think you still need to use + signs in Java, someone correct me if I'm wrong :) – Click Upvote Jul 18 '09 at 18:17
Groovy has variable interpolation. ;) – Rob Jul 19 '09 at 1:20
I think you're right. Note that there are some configuration options that have nothing to do with this, but will help. One of the most used is the one that lets you use <?=$what?> instead of using echo everyplace. Check out the php.ini stuff... – Yar Jul 19 '09 at 1:21
@Rob: thanks for that, and for telling me it's called "variable interpolation." Also see this koders.com/java/… – Yar Jul 19 '09 at 1:26
I disagree. If you count it up, the ruby version is actually the same number of characters. It also could be written (in Ruby): joe = "dragon-" + bob which is even more clear. And besides, having to put #, {, and } 1% of the time is better than having to put $ 99% of the time. – akway Jul 22 '09 at 7:21
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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