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

I'm using this code which works:

$this->path_medium = $this->PICTURES . "$this->file_hash-2.jpg";

However, I need to update it, as it is not very readable;

$this->file_hash

is a variable.

-2.jpg

is a string I append to the variable.

How does the interpreter know where the variable ends and the string begins.

share|improve this question

5 Answers

up vote 2 down vote accepted

How does the interpreter know where the variable ends and the string begins.

A variable not contain (-) character. like (echo "$var-$var";) then PHP considering file_hash as variable in this case.

From http://www.php.net/manual/en/language.variables.basics.php

Variable names follow the same rules as other labels in PHP. A valid variable name starts with a letter or underscore, followed by any number of letters, numbers, or underscores. As a regular expression, it would be expressed thus: '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*'

share|improve this answer

The reason your code happens to work as is is because - is not a valid character within a variable name. PHP stops parsing the variable name at this boundary where it encounters the invalid variable name character. If you had tried to do this:

$this->path_medium = $this->PICTURES . "$this->file_hash2.jpg";

PHP would have thought $this->file_hash2 was the variable being referenced.

There are a couple of ways to approach this. My personal preference is to not enclose the variable in quotes at all, like this:

$this->path_medium = $this->PICTURES . $this->file_hash . '-2.jpg';

You can also use {} around the variable for readability:

$this->path_medium = $this->PICTURES . "{$this->file_hash}-2.jpg";
share|improve this answer

Try:

$this->path_medium = $this->PICTURES . $this->file_hash . "-2.jpg";
share|improve this answer
1  
is that answer of the question asked? – Akam Feb 18 at 18:13

Additionally, how can I update this, so it is more clear?

Wrap curlies around your variables:

$this->path_medium = "{$this->PICTURES}{$this->file_hash}-2.jpg";

(or use concatenation, like you did with the first variable)

How does the interpreter know

I assume it will stop at the first invalid character for a variable (- is one of them)

share|improve this answer
+1. Clever use of double quotes! – Ayesh K Feb 18 at 18:14
{}{}...this means concatenation ? – pure_code.com Feb 19 at 21:00
No, that's interpolation. Concatenation is when you put the variable outside of the string, like $var1 . 'string' – One Trick Pony Feb 20 at 1:25

Is not syntactically correct insert a variable into a string and so you have to use @Sean code else compiler can't "split" variable text.

share|improve this answer

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.