FAQ
The PHP FAQ is your first stop for general information and those questions that seem to be on most people\'s minds.
BooksBooks are convenient resources to begin exploring PHP. The titles listed here will help you to start learning PHP, as well as extending your existing knowledge.
Sample CodeLooking for some more sample PHP scripts? Our links page page lists some archives of sample PHP code - great places to find many example scripts and useful functions, organized for your searching pleasure!
'; commonHeader("Documentation"); $languages = array( "en" => "English", "pt_BR" => "Brazilian Portuguese", "cs" => "Czech", "nl" => "Dutch", "fr" => "French", "de" => "German", "hu" => "Hungarian", "it" => "Italian", "ja" => "Japanese", "kr" => "Korean", "es" => "Spanish" ); $formats = array( "" => array("View Online", "view"), "html/" => array("View Online (plain)", "view"), "bigmanual.html.gz" => array("Single HTML", "html.gz"), "manual_doc.pdb" => array("PalmPilot DOC", "doc.pdb"), "manual_isilo.pdb" => array("PalmPilot iSilo", "isilo.pdb"), "manual.pdf" => array("PDF", "pdf"), "manual.txt.gz" => array("Plain text", "txt.gz"), "manual.tar.gz" => array("Many HTML files", "tar.gz"), "manual.zip" => array("Many HTML files", "zip"), "manual.chm" => array("Windows HTML Help", "chm") ); ?>The PHP manual is available in a selection of languages and formats. Pick a language and format from the table below:
| $v[0]\n"; }?> | $language | \n"; reset($formats); while (list($fn,$details) = each($formats)) { echo ""; # temporary hack until pdf are auto-generated if ($fn == "manual.pdf") { echo "$details[1] | "; continue; } # temporary hack until chm are auto-generated if ($fn == "manual.chm") { echo "$details[1]"; continue; } $size = @filesize("manual/$langcode/$fn"); if ($size) { echo "$details[1]"; } else { echo " "; } echo "\n"; } }?>