From 8606117ead4a8206d58db151f3015995c9add3c3 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Sun, 15 Aug 2004 12:42:40 +0000 Subject: [PATCH] fix build git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@166431 c90b9560-bf6c-de11-be94-00142212c4b1 --- faq/obtaining.xml | 4 ++-- install/windows/building.xml | 14 +++++++------- install/windows/index.xml | 4 ++-- language/oop5/basic.xml | 16 ++++++++-------- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/faq/obtaining.xml b/faq/obtaining.xml index 54146d63d2..05b9fff794 100755 --- a/faq/obtaining.xml +++ b/faq/obtaining.xml @@ -1,5 +1,5 @@ - + Obtaining PHP Obtaining PHP @@ -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 - building PHP from + building PHP from source on Windows. diff --git a/install/windows/building.xml b/install/windows/building.xml index bf84e97c59..b1e164cdd2 100644 --- a/install/windows/building.xml +++ b/install/windows/building.xml @@ -1,6 +1,6 @@ - - + + Building from source Before getting started, it is worthwhile answering the question: @@ -27,7 +27,7 @@ - + &reftitle.required; To compile and build PHP you need a Microsoft @@ -72,7 +72,7 @@ - + Putting it all together After downloading the required packages you have to extract them in a @@ -155,7 +155,7 @@ - + Configure MVC ++ The next step is to configure MVC ++ to prepare for compiling. @@ -185,7 +185,7 @@ - + Build resolv.lib You must build the resolv.lib library. @@ -231,7 +231,7 @@ - + Compiling The best way to get started is to build the CGI version. diff --git a/install/windows/index.xml b/install/windows/index.xml index ddae6f487f..9fde171d3b 100644 --- a/install/windows/index.xml +++ b/install/windows/index.xml @@ -1,5 +1,5 @@ - + Installation on Windows systems @@ -15,7 +15,7 @@ If you have Microsoft Visual Studio, you can also - build + build PHP from the original source code. diff --git a/language/oop5/basic.xml b/language/oop5/basic.xml index f1be1f820f..2f0ceb3516 100644 --- a/language/oop5/basic.xml +++ b/language/oop5/basic.xml @@ -1,10 +1,10 @@ - + The Basics - + class Every class definition begins with the keyword class, followed by a class @@ -33,9 +33,9 @@ class SimpleClass { ]]> - + - + new To create an instance of an object, a new object must be created and @@ -93,9 +93,9 @@ object(SimpleClass)#1 (1) { ]]> - + - + extend 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, 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 parent:: + linkend="language.oop5.paamayim-nekudotayim">parent:: Simple Class Inherintance @@ -137,7 +137,7 @@ a default value ]]> - +