mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00

PHP 8.0.1 (cli) (built: Jan 8 2021 19:12:31) ( NTS ) Copyright (c) The PHP Group Zend Engine v4.0.1, Copyright (c) Zend Technologies
116 lines
3.6 KiB
XML
116 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<chapter xml:id="faq.general" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<title>General Information</title>
|
|
<titleabbrev>General Information</titleabbrev>
|
|
|
|
<para>
|
|
This section holds the most general questions about PHP:
|
|
what it is and what it does.
|
|
</para>
|
|
|
|
<qandaset>
|
|
<qandaentry xml:id="faq.general.what">
|
|
<question>
|
|
<para>What is PHP?</para>
|
|
</question>
|
|
<answer>
|
|
<para>
|
|
From the <link linkend="preface">preface of the manual</link>:
|
|
</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>
|
|
|
|
<qandaentry xml:id="faq.general.acronym">
|
|
<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.
|
|
For more information, the curious can visit
|
|
<link xlink:href="&url.foldoc;">Free On-Line Dictionary of Computing</link>
|
|
or the
|
|
<link xlink:href="&url.wiki.recursive-acronym;">Wikipedia entry on
|
|
recursive acronyms</link>.
|
|
</para>
|
|
</answer>
|
|
</qandaentry>
|
|
|
|
<qandaentry xml:id="faq.general.relation-versions">
|
|
<question>
|
|
<para>What is the relation between the versions?</para>
|
|
</question>
|
|
<answer>
|
|
<para>
|
|
PHP/FI 2.0 is an early and no longer supported version of PHP. PHP 3
|
|
is the successor to PHP/FI 2.0 and is a lot nicer. PHP 8 is the current
|
|
generation of PHP, which uses the Zend
|
|
engine 4 which, among other things, offers many additional
|
|
<link linkend="language.oop5">OOP</link> features.
|
|
</para>
|
|
</answer>
|
|
</qandaentry>
|
|
|
|
<qandaentry xml:id="faq.general.running-concurent">
|
|
<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
|
|
in the PHP source distribution.
|
|
</para>
|
|
</answer>
|
|
</qandaentry>
|
|
|
|
<qandaentry xml:id="faq.general.bug">
|
|
<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
|
|
<link xlink:href="&url.php.bugs;">&url.php.bugs;</link>.
|
|
</para>
|
|
</answer>
|
|
</qandaentry>
|
|
</qandaset>
|
|
</chapter>
|
|
|
|
<!-- 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
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
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
|
|
-->
|