2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 05:34:55 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<chapter xml:id="faq.general" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2001-07-09 13:52:59 +00:00
|
|
|
<title>General Information</title>
|
2001-07-21 11:42:27 +00:00
|
|
|
<titleabbrev>General Information</titleabbrev>
|
2001-07-09 13:52:59 +00:00
|
|
|
|
2001-10-14 11:55:30 +00:00
|
|
|
<para>
|
|
|
|
This section holds the most general questions about PHP:
|
|
|
|
what it is and what it does.
|
|
|
|
</para>
|
2001-07-09 13:52:59 +00:00
|
|
|
|
2001-07-17 16:20:48 +00:00
|
|
|
<qandaset>
|
2007-06-20 22:25:43 +00:00
|
|
|
<qandaentry xml:id="faq.general.what">
|
2001-07-17 16:20:48 +00:00
|
|
|
<question>
|
|
|
|
<para>What is PHP?</para>
|
|
|
|
</question>
|
|
|
|
<answer>
|
|
|
|
<para>
|
2001-10-14 11:55:30 +00:00
|
|
|
From the <link linkend="preface">preface of the manual</link>:
|
2001-07-17 16:20:48 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
PHP is an HTML-embedded scripting language. Much of
|
|
|
|
its syntax is borrowed from C, Java and Perl with a couple of unique
|
|
|
|
PHP-specific features thrown in. The goal of the language is to
|
|
|
|
allow web developers to write dynamically generated pages quickly.
|
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
2001-07-10 10:07:56 +00:00
|
|
|
|
2007-06-20 22:25:43 +00:00
|
|
|
<qandaentry xml:id="faq.general.acronym">
|
2001-11-16 17:30:25 +00:00
|
|
|
<question>
|
|
|
|
<para>What does PHP stand for?</para>
|
|
|
|
</question>
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
PHP stands for <emphasis>PHP: Hypertext Preprocessor</emphasis>.
|
|
|
|
This confuses many people because the first word of the acronym is
|
|
|
|
the acronym. This type of acronym is called a recursive acronym.
|
2008-07-09 14:53:00 +00:00
|
|
|
For more information, the curious can visit
|
2007-06-20 22:25:43 +00:00
|
|
|
<link xlink:href="&url.foldoc;">Free On-Line Dictionary of Computing</link>
|
2008-07-09 14:53:00 +00:00
|
|
|
or the
|
|
|
|
<link xlink:href="&url.wiki.recursive-acronym;">Wikipedia entry on
|
|
|
|
recursive acronyms</link>.
|
2001-11-16 17:30:25 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2007-06-20 22:25:43 +00:00
|
|
|
<qandaentry xml:id="faq.general.relation-versions">
|
2001-07-17 16:20:48 +00:00
|
|
|
<question>
|
2001-10-14 11:55:30 +00:00
|
|
|
<para>What is the relation between the versions?</para>
|
2001-07-17 16:20:48 +00:00
|
|
|
</question>
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
PHP/FI 2.0 is an early and no longer supported version of PHP. PHP 3
|
2020-12-21 16:09:00 +00:00
|
|
|
is the successor to PHP/FI 2.0 and is a lot nicer. PHP 8 is the current
|
2017-08-21 11:27:50 +00:00
|
|
|
generation of PHP, which uses the Zend
|
2021-01-11 03:27:09 +00:00
|
|
|
engine 4 which, among other things, offers many additional
|
2008-07-09 14:53:00 +00:00
|
|
|
<link linkend="language.oop5">OOP</link> features.
|
2001-07-17 16:20:48 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
2001-07-10 10:07:56 +00:00
|
|
|
|
2007-06-20 22:25:43 +00:00
|
|
|
<qandaentry xml:id="faq.general.running-concurent">
|
2001-07-17 16:20:48 +00:00
|
|
|
<question>
|
|
|
|
<para>Can I run several versions of PHP at the same time?</para>
|
|
|
|
</question>
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
Yes. See the <filename>INSTALL</filename> file that is included
|
2008-02-19 21:45:32 +00:00
|
|
|
in the PHP source distribution.
|
2001-07-17 16:20:48 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
2001-10-14 11:55:30 +00:00
|
|
|
|
2007-06-20 22:25:43 +00:00
|
|
|
<qandaentry xml:id="faq.general.bug">
|
2001-10-14 11:55:30 +00:00
|
|
|
<question>
|
|
|
|
<para>
|
|
|
|
I think I found a bug! Who should I tell?
|
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
You should go to the PHP Bug Database and make sure the bug
|
|
|
|
isn't a known bug. If you don't see it in the database, use
|
|
|
|
the reporting form to report the bug. It is important to use
|
|
|
|
the bug database instead of just sending an email to one of the
|
|
|
|
mailing lists because the bug will have a tracking number assigned
|
|
|
|
and it will then be possible for you to go back later and check
|
|
|
|
on the status of the bug. The bug database can be found at
|
2007-06-20 22:25:43 +00:00
|
|
|
<link xlink:href="&url.php.bugs;">&url.php.bugs;</link>.
|
2001-10-14 11:55:30 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
2001-07-17 16:20:48 +00:00
|
|
|
</qandaset>
|
|
|
|
</chapter>
|
2001-07-09 21:14:27 +00:00
|
|
|
|
2001-09-21 22:47:49 +00:00
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
2001-12-12 20:47:43 +00:00
|
|
|
indent-tabs-mode:nil
|
2001-09-21 22:47:49 +00:00
|
|
|
sgml-parent-document:nil
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2001-09-21 22:47:49 +00:00
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|