Search found 1 match
- Sun Apr 20, 2008 5:45 pm
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
- Topic: Formatted variables within strings
- Replies: 5
- Views: 4021
Re: Formatted variables within strings
That's something that suprise me using Notepad++. But for skilled programmer, I think, it is just a joke. Why? Because it it good practise (and speed up for PHP) not to have variables in strings.. this is bad: $var = "why should PHP parser look for $var in this line?"; this is good: $var = 'why ...