
trq
Staff Alumni-
Posts
30,999 -
Joined
-
Last visited
-
Days Won
26
Everything posted by trq
-
Don't try and force functions to use variables declared in the globals namespace, it defeats the a big part of there purpose.
-
You don't need any regular expression, see json_decode.
-
Setting A Variable, Ternary Operator Vs. Error Control Operator
trq replied to jmartinsen's topic in Application Design
You doubt there is any performance issues? When PHP generates an error there are costs involved. Simply suppressing the error does not eliminate all of these costs.- 6 replies
-
- ternary operator
- error control operator
-
(and 1 more)
Tagged with:
-
I'm not sure you understand the purpose of this forum.
-
How To Get At Information That's In The Url Of The Site?
trq replied to yoursurrogategod's topic in PHP Coding Help
To access these parameters you would use the getParams() or getParam() method of the Request object. -
Why aren't you using a where clause in your initial select query in the first place?
-
Care to format your code so that it is readable?
-
This resonates with me more than anything else. http://blog.sanctum.geek.nz/series/unix-as-ide/
-
My main motivation for working in vim is the fact that we do allot of remote stuff via ssh on client machines at work. So, now I can use the same editor under all circumstances. Even when I work from home, it's so much easier to just connect to the vps, ssh in and open vim in a terminal. I don;t have to worry about the overhead of a Desktop.
-
Have you tried an IDE? I used to think a simple text editor was all I needed too, but then I tried an IDE. The only time I use a regular text editor now is just for real quick edits, or stuff that I don't want to make into a project in my IDE. IDE's tend to get in my way. All I use is vim with a few plugins: https://github.com/tpope/vim-pathogen https://github.com/tpope/vim-fugitive https://github.com/tpope/vim-unimpaired https://github.com/vim-scripts/taglist.vim https://github.com/vim-scripts/sessionman.vim https://github.com/vim-scripts/bufexplorer.zip https://github.com/tpope/vim-surround https://github.com/vim-scripts/FuzzyFinder
-
I'm a massive vim fan so don't really have much of an opinion when it comes to IDE's.
-
That's because MS sux balls.
-
There is no definitive answer, just opinion. Often the one that is well suited to your style of development and specific project requirements will be the best one to use.
-
I used to use dynamically loading js, but it ended up being allot more efficient to put all js into one file and the minify it. Its the actual http requests to multiple files that hurts more than size. Of course it would also depend on what sizes where talking about. Loading a 50k-80k file just to use one function etc etc.
-
Have you checked out some of the editors mentioned in this thread?
-
This board is here for questions directly relating to already existing Third Party code. It is NOT a code repository or the place to post requests looking for specific scripts. If you can't find the script you are looking for on Google, you either don't know how to use Google or the specific script does not exist. DO NOT request help with searching.
-
I'm not sure how that would be achieved through php. The rule is that you use a before words that start with a consonant sound and an before words that start with a vowel sound.
-
You'll need to be more descriptive. Your example makes little sense to me.
-
Netbeans 6.8 does seem even better than 6.7. Many improvement + it does seem more responsive.
-
Iv'e not noticed any performance lag with Netbeans excepting maybe when it initially scanning my projects. Even then, I think its only because the drives my projects are hosted on are remote (LAN).
-
Iv'e been using vim for years though have been loving Netbeans since I programming work full time.
-
Doesn't really make sense. They both serve a completely different purpose.
-
This board is here for questions directly relating to already existing php applications. It is NOT a code repository or the place to post requests looking for specific applications. If you can't find the application you are looking for on google, you either don't know how to use google or the specific application does not exist. DO NOT request help with searching.