> >What are the top 3 tools that you use that improve your
> productivity when programming php?
> 
> 1. print_r
> 2. echo
> 3. die


Die has to be a favorite of mine as well - and it has a cool name.

Because I am lucky to be developing on a mac I also have some cool bash aliases 
that I use.  like the following taken from my .profile


# this one connects me to mysql
alias m='mysql -u username -pborkedisnotmypassword defaultdb'

# this one will cd me into the directory 
# where many of our js files are kept 
alias cdjs='cd /Users/myuser/some/super/long/path/to/our/javascript/'

# this one will take me to where our php code is
alias cdp='cd /Users/youruser/long/boring/path/to/php/core/files/barf/'

# this one gerps for crud and then highlights the result
alias agrep='grep --color=always -r -i -n -A 2 -B 2'


      

_______________________________________________

UPHPU mailing list
[email protected]
http://uphpu.org/mailman/listinfo/uphpu
IRC: #uphpu on irc.freenode.net

Reply via email to