vote up 1 vote down star

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?

flag

4  
Can you explain why you'd want to do this? – ceejayoz Apr 6 at 21:16
1  
It may look weird at first, but it's actually quite a useful feature. – troelskn Apr 6 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 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 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 at 17:46
show 4 more comments

5 Answers

vote up 45 vote down check

No.

link|flag
2  
Couldn't have said it better myself. – Chacha102 Jul 18 at 16:45
3  
Sorry, but 36 upvotes? Really? – Daniel Jul 19 at 13:23
Don't hate the player, hate the player character. – chaos Jul 19 at 13:35
vote up 3 vote down

Nope. Variables in PHP must start with $.

The other approach is to use constants.

link|flag
Constants aren't "another approach" to variables if you need to modify the contents of the variable. – Rob Jul 19 at 1:18
vote up 6 vote down

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

define('CONS', 5);
echo CONS;
link|flag
1  
He clearly said "variables", which isn't "close" to constants in any real sense at all. – Rob Jul 19 at 1:18
1  
It is quite the opposite in fact. – akway Jul 22 at 7:17
vote up 4 vote down

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

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

Makes no sense whatsoever.

link|flag
vote up 2 vote down

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!

link|flag
Good point. I think you still need to use + signs in Java, someone correct me if I'm wrong :) – Click Upvote Jul 18 at 18:17
Groovy has variable interpolation. ;) – Rob Jul 19 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 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 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 at 7:21
show 1 more comment

Your Answer

Get an OpenID
or

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