PHP
downloads | documentation | faq | getting help | mailing lists | | php.net sites | links | my php.net

search for in the

Quick Reference Tips

On this page, you can find many neat tips and tricks to optimize your usage of our quick reference features. All of these shortcuts display pages in your own preferred language, as detected by the PHP site. For more information on language selection, see the My PHP.net page.

Most of the tips here utilize PHP.net URL shortcuts, so they allow you more then just function lookups. For more information on what is possible with our shortcuts, see the URL Howto page.

Send your suggestions for tips to the webmasters.


Search from the Safari Search Bar

Submitted by Gabor Hojtsy
19-Jan-2004

You can point your search engine setting to a local script on your own webserver, and set up a PHP script to allow you to use shortcuts provided by other browsers. See the detailed explanation at .


Search from the WeberDev Toolbar

Submitted by Boaz Yahav
16-Aug-2003

The provides direct search functions to the PHP function list and the bug database, right from a browser toolbar.


Quick Reference for BBEdit

Submitted by Stian Andersen
27-July-2003

BBEdit users can put this little AppleScript into the Scripts folder of BBEdit to look up functions on the PHP website as they type. This will probably work in other AppleScript supporting text editors too, with small modifications. The script uses the current selection, or prompts for a function name, and uses the default browser to show the page at php.net.

tell application "BBEdit"
    set fu to selection of window 1 as string
    if fu = "" then
        set fu to text returned of (display dialog "PHP Function:" default answer "")
    end if

    if fu is not "" then
        set target_URL to "/" & fu
        open location target_URL
    end if
end tell

Quick Reference for iCab

Submitted by Telcontar
17-Jun-2003

Open the Preferences dialog box, select Searches and then Internet Sites. Click New, add "PHP Quick Reference" as the Title, and "/" as the URL. If you add a letter in the Key column (eg. "p") you can search using the address bar with that letter (eg. "p str_replace"). Otherwise, use Edit → Find (Cmd-F) and select "On the Internet" under Find and choose "PHP Quick Reference" as the search site.


Quick Reference for Internet Explorer 4 and above

Submitted by Fraghunter
07-Nov-2002

Just right-click on this link: and add it to your bookmarks. Using this bookmark you can directly get to the documentation page of any function you have selected the name of on the page, or if there is no selection, you are prompted for a string to look for.


Quick Reference for KDE 3.x

Submitted by James Grant
07-Nov-2002

In 3.0, the PHP quicksearch is preconfigured, so you can type "php:mail" in Konqueror to get the mail() function's manual page.


Search Box for Galeon

Submitted by Carter Comunale
31-Oct-2002

  1. Press CTRL+D to add a bookmark
  2. Edit the bookmark, filling the following fields in:
    Name
    PHP
    URL
    /
    Smart URL
    /
    Nicknames
    php
  3. You can also add a logo to the bookmark, see our logos page

Quick Reference for OmniWeb on Mac OS X

Submitted by Steve Poole
03-Oct-2002

  1. Open the Preferences window in OmniWeb, and select Shortcuts.
  2. Click the + button to add a shortcut.
  3. In the Shortcut column type: php@
  4. In the Destination URL column type: /%@
  5. Close the Preferences window.

Now you can search for PHP functions by typing into the URL well. For instance, php mysql or php strstr.


Quick Reference for Opera

Submitted by Paul Sculthorpe
11-Jun-2002

Add this stuff to search.ini in your Opera directory.

I replaced one of the existing search engine entries (number 4 in this case), but there are tools around that allow you to fully manage the search features of Opera.

After adding, saving and restarting Opera, I can access the PHP function list by typing 'p is_dir' in the address bar of any Opera window.

[Search Engine 4]
Name=PHP
URL=/Query=
Key=p
Is post=0
Has endseparator=0
Encoding=utf-8
Search Type=0

Quick Reference for KDE 2.1

Submitted by Christoph Luehr
10-Mar-2001

With 2.1, it is possible to configure the Konqueror web browser to recognize quick reference URIs, for example: "php:mysql_connect".

Just open the Konqueror menu "Settings → Configure Konqueror", select the tab "Enhanced Browsing", check "Enable Web Shortcuts".

Then click on "Add..." and fill the dialog:

Voila!


Adding the Quick Reference to most Javascript-capable Browsers

07-Mar-2001

Just right-click (control-click or click-and-hold for Macintosh users) on this link: and add it to your bookmarks. With some browsers, you may need to edit your bookmarks manually to give the bookmark an easy-to-remember title.


Adding the Quick Reference to Mozilla and Netscape 6/7

Submitted by André Langhorst
16-Aug-2000

Quick access to PHP documentation and site search for all Mozilla (including Firebird) and Netscape 6/7 users:

  1. Click "Bookmarks → Manage Bookmarks"
  2. Create a bookmark in a folder of your choice on the following URL: /%s and choose a name for it.
  3. Right click the bookmark you have just created and select "Properties..."
  4. Choose a "custom keyword" you want to enter in the URL bar, eg. "php" and fill it in.
  5. Click "ok" and open a new browser window.
  6. Finished. Now you are able to enter eg. "php fgets" to look up the manual entry on the function fgets(). You can also access PHP.net pages with this shortcut. If you type "php links" you will get to the links page on our site.

Adding the Quick Reference to Internet Explorer 5

Submitted by Colin Viebrock
28-Jul-2000

  1. If you don't already have the IE5 Tools package, download and install it from
  2. Launch the QuickSearch utility (you'll find it on your Links bar)
  3. Add a new search shortcut by clicking on "New" and use the following settings:
    • Shortcut: php
    • Search: Custom URL
    • URL: /%s
  4. Click "Ok", then click "Save" to keep your new settings
  5. That's it! Try it by typing "php strlen" in the IE Address bar. You should jump right to the manual entry for strlen().

Adding the Quick Reference to Netscape on Linux

Submitted by David Rose
28-Jul-2000

Further to the example above for Windows/IE users, here's something Linux folks can do:

  1. Create a file called phpfind somewhere on an executable path
  2. In that file, write the following code (substituting the path to Netscape, if necessary):
    #!/bin/sh
    /usr/bin/netscape /$1
      
  3. Save it and type chmod +x phpfind to make it executable
  4. That's it. When you type "phpfind fopen" on your command line, Netscape will open the fopen() documentation page for you.

Quick Reference for Gnome Users

Submitted by Benjamin Curtis
29-Jul-2000

Here's another search option for Linux users who use Gnome. This is a macro for gnome's mini-commander panel applet (modified from the Yahoo search that comes with the applet):

Regex:
^php: *(.*)$

Macro:
gnome-moz-remote --newwin /$(echo
'\1'|sed -e ': p;s/+/%2B/;t p;: s;s/\ /+/;t s;: q;s/\"/%22/;t q')

 
show source | credits | sitemap | contact | advertising | mirror sites