Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I escape for the following lines in php?

@[myvaule]"$array[$i]".docx

I tried doing this `@[m]"$array[$i]"`.docx, but I was getting the error

Parse error: syntax error, unexpected T_VARIABLE, expecting ')'

I tried this:

@[rrent]".array[$i].".docx"

but I got an extra space after array[$i] like this [myrstarray .docx

If anyone can help that would be awesome.

share|improve this question
You dont want for that line to show / be active at all? Please explain a bit more what you want :P – Xfile Jan 1 at 2:37

1 Answer

up vote 3 down vote accepted

If you want to make a string out of it, Its better to put it inside a variable like this,

$filename = "[mytorrent]{$array[$i]}.docx";

Read more about PHP string.

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.