mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
fix build
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@166431 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a2fcf07810
commit
8606117ead
4 changed files with 19 additions and 19 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.19 $ -->
|
||||
<!-- $Revision: 1.20 $ -->
|
||||
<chapter id="faq.obtaining">
|
||||
<title>Obtaining PHP</title>
|
||||
<titleabbrev>Obtaining PHP</titleabbrev>
|
||||
|
@ -203,7 +203,7 @@
|
|||
First, you will need Microsoft Visual C++ v6 (v5 may do
|
||||
it also, but we do it with v6), and you will need some
|
||||
support files. See the manual section about
|
||||
<link linkend="install.windows.build">building PHP from
|
||||
<link linkend="install.windows.building">building PHP from
|
||||
source on Windows</link>.
|
||||
</para>
|
||||
</answer>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<sect1 id="install.windows.build">
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<sect1 id="install.windows.building">
|
||||
<title>Building from source</title>
|
||||
<para>
|
||||
Before getting started, it is worthwhile answering the question:
|
||||
|
@ -27,7 +27,7 @@
|
|||
</listitem>
|
||||
</orderedlist>
|
||||
|
||||
<sect2 id="install.windows.build.requirement">
|
||||
<sect2 id="install.windows.building.requirement">
|
||||
&reftitle.required;
|
||||
<para>
|
||||
To compile and build PHP you need a Microsoft
|
||||
|
@ -72,7 +72,7 @@
|
|||
</simpara>
|
||||
</sect2>
|
||||
|
||||
<sect2 id="install.windows.build.install">
|
||||
<sect2 id="install.windows.building.install">
|
||||
<title>Putting it all together</title>
|
||||
<para>
|
||||
After downloading the required packages you have to extract them in a
|
||||
|
@ -155,7 +155,7 @@
|
|||
</note>
|
||||
</sect2>
|
||||
|
||||
<sect2 id="install.windows.build.configure">
|
||||
<sect2 id="install.windows.building.configure">
|
||||
<title>Configure MVC ++</title>
|
||||
<para>
|
||||
The next step is to configure MVC ++ to prepare for compiling.
|
||||
|
@ -185,7 +185,7 @@
|
|||
</para>
|
||||
</sect2>
|
||||
|
||||
<sect2 id="install.windows.build.resolvlib">
|
||||
<sect2 id="install.windows.building.resolvlib">
|
||||
<title>Build resolv.lib</title>
|
||||
<para>
|
||||
You must build the <filename>resolv.lib</filename> library.
|
||||
|
@ -231,7 +231,7 @@
|
|||
</para>
|
||||
</sect2>
|
||||
|
||||
<sect2 id="install.windows.build.compile">
|
||||
<sect2 id="install.windows.building.compile">
|
||||
<title>Compiling</title>
|
||||
<simpara>
|
||||
The best way to get started is to build the CGI version.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<chapter id="install.windows">
|
||||
<title>Installation on Windows systems</title>
|
||||
<para>
|
||||
|
@ -15,7 +15,7 @@
|
|||
</para>
|
||||
<para>
|
||||
If you have Microsoft Visual Studio, you can also
|
||||
<link linkend="install.windows.build">build</link>
|
||||
<link linkend="install.windows.building">build</link>
|
||||
PHP from the original source code.
|
||||
</para>
|
||||
<para>
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
|
||||
<sect1 id="language.oop5.basic">
|
||||
<title>The Basics</title>
|
||||
|
||||
<sect1 id="oop5.basic.class">
|
||||
<sect2 id="language.oop5.basic.class">
|
||||
<title>class</title>
|
||||
<para>
|
||||
Every class definition begins with the keyword class, followed by a class
|
||||
|
@ -33,9 +33,9 @@ class SimpleClass {
|
|||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</sect1>
|
||||
</sect2>
|
||||
|
||||
<sect1 id="oop5.basic.new">
|
||||
<sect2 id="language.oop5.basic.new">
|
||||
<title>new</title>
|
||||
<para>
|
||||
To create an instance of an object, a new object must be created and
|
||||
|
@ -93,9 +93,9 @@ object(SimpleClass)#1 (1) {
|
|||
]]>
|
||||
</screen>
|
||||
</example>
|
||||
</sect1>
|
||||
</sect2>
|
||||
|
||||
<sect1 id="oop5.basic.extend">
|
||||
<sect2 id="language.oop5.basic.extend">
|
||||
<title>extend</title>
|
||||
<para>
|
||||
A class can inherit methods and members of another class by using the
|
||||
|
@ -108,7 +108,7 @@ object(SimpleClass)#1 (1) {
|
|||
linkend="language.oop5.final">final</link>, by redeclaring them
|
||||
within the same name defined in the parent class. It is possible to access the overloaded
|
||||
method or members by referencing them with <link
|
||||
linkend="lanuguage.oop5.paamayim-nekudotayim">parent::</link>
|
||||
linkend="language.oop5.paamayim-nekudotayim">parent::</link>
|
||||
</para>
|
||||
<example>
|
||||
<title>Simple Class Inherintance</title>
|
||||
|
@ -137,7 +137,7 @@ a default value
|
|||
]]>
|
||||
</screen>
|
||||
</example>
|
||||
</sect1>
|
||||
</sect2>
|
||||
|
||||
</sect1>
|
||||
|
||||
|
|
Loading…
Reference in a new issue