Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'PHP Lookup Script' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
PHP Lookup Script
Authored by: rbates on Oct 07, '04 12:18:17PM
On a related note, I use a very simple AppleScript with BBEdit to lookup the selected function name on the PHP site. I assigned the script to a key (F8) using BBEdit's Script palette.

tell application "BBEdit"
	open location "http://www.php.net/" & selection
end tell
Very quick, just double click the function name and hit the key. If the site can't find the function then it displays similar ones (great if you can't remember the exact name). You should be able to do this with any text editor which supports AppleScript.

[ Reply to This | # ]