Table Of ContentBeginning PHP
and MySQL
From Novice to Professional
—
Fifth Edition
—
Frank M. Kromann
Beginning PHP
and MySQL
From Novice to Professional
Fifth Edition
Frank M. Kromann
Beginning PHP and MySQL: From Novice to Professional
Frank M. Kromann
Aliso Viejo, CA, USA
ISBN-13 (pbk): 978-1-4302-6043-1 ISBN-13 (electronic): 978-1-4302-6044-8
https://doi.org/10.1007/978-1-4302-6044-8
Library of Congress Control Number: 2018964569
Copyright © 2018 by Frank M. Kromann
This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the
material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation,
broadcasting, reproduction on microfilms or in any other physical way, and transmission or information
storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now
known or hereafter developed.
Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with
every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an
editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the
trademark.
The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not
identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to
proprietary rights.
While the advice and information in this book are believed to be true and accurate at the date of publication,
neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or
omissions that may be made. The publisher makes no warranty, express or implied, with respect to the
material contained herein.
Managing Director, Apress Media LLC: Welmoed Spahr
Acquisitions Editor: Steve Anglin
Development Editor: Matthew Moodie
Coordinating Editor: Mark Powers
Cover designed by eStudioCalamar
Cover image designed by Freepik (www.freepik.com)
Distributed to the book trade worldwide by Springer Science+Business Media New York, 233 Spring Street,
6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail orders-ny@springer-
sbm.com, or visit www.springeronline.com. Apress Media, LLC is a California LLC and the sole member
(owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a
Delaware corporation.
For information on translations, please e-mail [email protected]; for reprint, paperback, or audio rights,
please email [email protected].
Apress titles may be purchased in bulk for academic, corporate, or promotional use. eBook versions and
licenses are also available for most titles. For more information, reference our Print and eBook Bulk Sales
web page at http://www.apress.com/bulk-sales.
Any source code or other supplementary material referenced by the author in this book is available to
readers on GitHub via the book's product page, located at www.apress.com/9781430260431. For more
detailed information, please visit http://www.apress.com/source-code.
Printed on acid-free paper
Table of Contents
About the Author ��������������������������������������������������������������������������������������������������xxiii
Introduction �����������������������������������������������������������������������������������������������������������xxv
Chapter 1: Introducing PHP ��������������������������������������������������������������������������������������1
Key PHP Features ��������������������������������������������������������������������������������������������������������������������������2
Practicality �������������������������������������������������������������������������������������������������������������������������������2
Power ��������������������������������������������������������������������������������������������������������������������������������������5
Possibility ��������������������������������������������������������������������������������������������������������������������������������6
Price ����������������������������������������������������������������������������������������������������������������������������������������6
The Current State of PHP ��������������������������������������������������������������������������������������������������������������7
The PHP Ecosystem ��������������������������������������������������������������������������������������������������������������������11
Drupal ������������������������������������������������������������������������������������������������������������������������������������11
WordPress �����������������������������������������������������������������������������������������������������������������������������12
Magento ��������������������������������������������������������������������������������������������������������������������������������12
MediaWiki ������������������������������������������������������������������������������������������������������������������������������13
SugarCRM ������������������������������������������������������������������������������������������������������������������������������13
Zend Framework �������������������������������������������������������������������������������������������������������������������13
Summary�������������������������������������������������������������������������������������������������������������������������������������14
Chapter 2: Configuring Your Environment ��������������������������������������������������������������15
Choosing a Hosting Environment ������������������������������������������������������������������������������������������������17
Virtual Servers �����������������������������������������������������������������������������������������������������������������������17
Platform as a Service (PaaS) �������������������������������������������������������������������������������������������������17
Installation Prerequisites ������������������������������������������������������������������������������������������������������������18
Windows ��������������������������������������������������������������������������������������������������������������������������������18
macOS �����������������������������������������������������������������������������������������������������������������������������������27
Linux ��������������������������������������������������������������������������������������������������������������������������������������29
From Source ��������������������������������������������������������������������������������������������������������������������������30
iii
Table of ConTenTs
Configure PHP �����������������������������������������������������������������������������������������������������������������������������30
The Apache httpd�conf and �htaccess Files ���������������������������������������������������������������������������32
Within the Executing Script ���������������������������������������������������������������������������������������������������33
PHP’s Configuration Directives ����������������������������������������������������������������������������������������������33
Choosing an Editor ����������������������������������������������������������������������������������������������������������������������44
PHPStorm ������������������������������������������������������������������������������������������������������������������������������44
Atom ��������������������������������������������������������������������������������������������������������������������������������������45
Sublime Text ��������������������������������������������������������������������������������������������������������������������������45
Visual Studio Code �����������������������������������������������������������������������������������������������������������������45
PDT (PHP Development Tools) �����������������������������������������������������������������������������������������������45
Zend Studio ���������������������������������������������������������������������������������������������������������������������������46
Summary�������������������������������������������������������������������������������������������������������������������������������������46
Chapter 3: PHP Basics ��������������������������������������������������������������������������������������������47
Embedding PHP Code in Your Web Pages �����������������������������������������������������������������������������������48
Default Syntax �����������������������������������������������������������������������������������������������������������������������48
ShortTags �������������������������������������������������������������������������������������������������������������������������������49
Embedding Multiple Code Blocks ������������������������������������������������������������������������������������������50
Commenting Your Code ���������������������������������������������������������������������������������������������������������������50
Single-Line C++ Syntax ��������������������������������������������������������������������������������������������������������51
Multiple-Line Comments �������������������������������������������������������������������������������������������������������52
Outputting Data to the Client �������������������������������������������������������������������������������������������������������53
Complex Output Using the printf() Statement ������������������������������������������������������������������������54
The sprintf() Statement ����������������������������������������������������������������������������������������������������������55
PHP’s Data Types �������������������������������������������������������������������������������������������������������������������������56
Scalar Data Types ������������������������������������������������������������������������������������������������������������������56
Compound Data Types �����������������������������������������������������������������������������������������������������������58
Converting Between Data Types Using Type Casting �������������������������������������������������������������60
Adapting Data Types with Type Juggling �������������������������������������������������������������������������������62
Type Identifier Functions �������������������������������������������������������������������������������������������������������63
iv
Table of ConTenTs
Manipulating Dynamic Data Using Variables ������������������������������������������������������������������������������64
Variable Declaration ��������������������������������������������������������������������������������������������������������������64
PHP’s Superglobal Variables ��������������������������������������������������������������������������������������������������66
Managing Constant Data with Constants ������������������������������������������������������������������������������������70
Defining a Constant ���������������������������������������������������������������������������������������������������������������71
Taking Action with Expressions���������������������������������������������������������������������������������������������������72
Defining Inputs with Operands ����������������������������������������������������������������������������������������������72
Defining Actions with Operators ��������������������������������������������������������������������������������������������72
String Interpolation ���������������������������������������������������������������������������������������������������������������������81
Double Quotes �����������������������������������������������������������������������������������������������������������������������81
Escape Sequences ����������������������������������������������������������������������������������������������������������������81
Single Quotes ������������������������������������������������������������������������������������������������������������������������82
Curly Braces ��������������������������������������������������������������������������������������������������������������������������83
Heredoc ���������������������������������������������������������������������������������������������������������������������������������83
Nowdoc����������������������������������������������������������������������������������������������������������������������������������84
Taking Control with Control Structures ���������������������������������������������������������������������������������������85
Making Decisions with Conditional Statements ��������������������������������������������������������������������85
Iterating Repeatedly with Looping Statements ���������������������������������������������������������������������88
File-Inclusion Statements ������������������������������������������������������������������������������������������������������94
Summary�������������������������������������������������������������������������������������������������������������������������������������96
Chapter 4: Functions ����������������������������������������������������������������������������������������������97
Invoking a Function ���������������������������������������������������������������������������������������������������������������������98
Creating a Function �������������������������������������������������������������������������������������������������������������������100
Returning Multiple Values ����������������������������������������������������������������������������������������������������101
Passing Arguments by Value �����������������������������������������������������������������������������������������������102
Default Argument Values �����������������������������������������������������������������������������������������������������103
Using Type Declarations ������������������������������������������������������������������������������������������������������104
Recursive Functions ������������������������������������������������������������������������������������������������������������105
Anonymous Functions ���������������������������������������������������������������������������������������������������������109
Function Libraries ����������������������������������������������������������������������������������������������������������������110
Summary�����������������������������������������������������������������������������������������������������������������������������������112
v
Table of ConTenTs
Chapter 5: Arrays ��������������������������������������������������������������������������������������������������113
What Is an Array? ����������������������������������������������������������������������������������������������������������������������114
Creating an Array ����������������������������������������������������������������������������������������������������������������������115
Creating Arrays with array() �������������������������������������������������������������������������������������������������117
Extracting Arrays with list() �������������������������������������������������������������������������������������������������117
Populating Arrays with a Predefined Value Range ���������������������������������������������������������������119
Testing for an Array �������������������������������������������������������������������������������������������������������������119
Outputting an Array �������������������������������������������������������������������������������������������������������������������120
Printing Arrays for Testing Purposes �����������������������������������������������������������������������������������121
Adding and Removing Array Elements ��������������������������������������������������������������������������������������122
Adding a Value to the Front of an Array �������������������������������������������������������������������������������123
Adding a Value to the End of an Array ���������������������������������������������������������������������������������123
Removing a Value from the Front of an Array ����������������������������������������������������������������������124
Removing a Value from the End of an Array ������������������������������������������������������������������������124
Locating Array Elements �����������������������������������������������������������������������������������������������������������124
Searching an Array ��������������������������������������������������������������������������������������������������������������125
Retrieving Array Keys ����������������������������������������������������������������������������������������������������������126
Retrieving Array Values ��������������������������������������������������������������������������������������������������������127
Extracting Columns �������������������������������������������������������������������������������������������������������������������127
Traversing Arrays ����������������������������������������������������������������������������������������������������������������������128
Retrieving the Current Array Key �����������������������������������������������������������������������������������������128
Retrieving the Current Array Value ��������������������������������������������������������������������������������������129
Moving the Array Pointer �����������������������������������������������������������������������������������������������������129
Passing Array Values to a Function �������������������������������������������������������������������������������������131
Determining Array Size and Uniqueness �����������������������������������������������������������������������������������133
Determining the Size of an Array �����������������������������������������������������������������������������������������133
Counting Array Value Frequency ������������������������������������������������������������������������������������������134
Determining Unique Array Values ����������������������������������������������������������������������������������������134
Sorting Arrays ���������������������������������������������������������������������������������������������������������������������������135
Reversing Array Element Order �������������������������������������������������������������������������������������������135
Flipping Array Keys and Values �������������������������������������������������������������������������������������������136
Sorting an Array �������������������������������������������������������������������������������������������������������������������136
vi
Table of ConTenTs
Merging, Slicing, Splicing, and Dissecting Arrays ���������������������������������������������������������������������142
Merging Arrays ��������������������������������������������������������������������������������������������������������������������143
Recursively Appending Arrays ���������������������������������������������������������������������������������������������143
Combining Two Arrays ���������������������������������������������������������������������������������������������������������144
Slicing an Array �������������������������������������������������������������������������������������������������������������������145
Splicing an Array �����������������������������������������������������������������������������������������������������������������146
Calculating an Array Intersection ����������������������������������������������������������������������������������������147
Calculating Associative Array Intersections �������������������������������������������������������������������������148
Calculating Array Differences ����������������������������������������������������������������������������������������������148
Calculating Associative Array Differences ���������������������������������������������������������������������������149
Other Useful Array Functions ����������������������������������������������������������������������������������������������������150
Returning a Random Set of Keys �����������������������������������������������������������������������������������������150
Shuffling Array Elements �����������������������������������������������������������������������������������������������������150
Summary�����������������������������������������������������������������������������������������������������������������������������������152
Chapter 6: Object-Oriented PHP����������������������������������������������������������������������������153
The Benefits of OOP ������������������������������������������������������������������������������������������������������������������153
Encapsulation ����������������������������������������������������������������������������������������������������������������������154
Inheritance ��������������������������������������������������������������������������������������������������������������������������155
Polymorphism ����������������������������������������������������������������������������������������������������������������������156
Key OOP Concepts ���������������������������������������������������������������������������������������������������������������������156
Classes ��������������������������������������������������������������������������������������������������������������������������������156
Objects ��������������������������������������������������������������������������������������������������������������������������������158
Properties ����������������������������������������������������������������������������������������������������������������������������158
Constants �����������������������������������������������������������������������������������������������������������������������������167
Methods �������������������������������������������������������������������������������������������������������������������������������167
Constructors and Destructors ���������������������������������������������������������������������������������������������������173
Constructors ������������������������������������������������������������������������������������������������������������������������173
Destructors ��������������������������������������������������������������������������������������������������������������������������176
Static Class Members ���������������������������������������������������������������������������������������������������������������178
The instanceof Keyword �����������������������������������������������������������������������������������������������������������179
vii
Table of ConTenTs
Helper Functions �����������������������������������������������������������������������������������������������������������������������180
Determining Whether a Class Exists ������������������������������������������������������������������������������������180
Determining Object Context�������������������������������������������������������������������������������������������������180
Learning About Class Methods ��������������������������������������������������������������������������������������������180
Learning About Class Properties �����������������������������������������������������������������������������������������181
Learning About Declared Classes ����������������������������������������������������������������������������������������181
Learning About Object Properties ����������������������������������������������������������������������������������������181
Determining an Object’s Parent Class ���������������������������������������������������������������������������������181
Determining Object Type �����������������������������������������������������������������������������������������������������182
Determining Object Subclass Type ��������������������������������������������������������������������������������������182
Determining Method Existence �������������������������������������������������������������������������������������������182
Autoloading Objects ������������������������������������������������������������������������������������������������������������������182
Traits �����������������������������������������������������������������������������������������������������������������������������������������183
Summary�����������������������������������������������������������������������������������������������������������������������������������184
Chapter 7: Advanced OOP Features ����������������������������������������������������������������������185
Advanced OOP Features Not Supported by PHP �����������������������������������������������������������������������186
Object Cloning ���������������������������������������������������������������������������������������������������������������������������187
Cloning Example ������������������������������������������������������������������������������������������������������������������188
The __clone() Method ����������������������������������������������������������������������������������������������������������190
Inheritance ��������������������������������������������������������������������������������������������������������������������������������191
Class Inheritance �����������������������������������������������������������������������������������������������������������������192
Inheritance and Constructors ����������������������������������������������������������������������������������������������195
Inheritance and Late Static Binding ������������������������������������������������������������������������������������197
Interfaces ����������������������������������������������������������������������������������������������������������������������������������198
Implementing a Single Interface �����������������������������������������������������������������������������������������200
Implementing Multiple Interfaces ����������������������������������������������������������������������������������������201
Abstract Classes �����������������������������������������������������������������������������������������������������������������������202
Introducing Namespaces ����������������������������������������������������������������������������������������������������������204
Summary�����������������������������������������������������������������������������������������������������������������������������������208
viii
Table of ConTenTs
Chapter 8: Error and Exception Handling �������������������������������������������������������������209
All Your Bugs Belong to You ������������������������������������������������������������������������������������������������������210
Configuring PHP’s Error Reporting Behavior �����������������������������������������������������������������������������211
Setting the Desired Error Sensitivity Level ��������������������������������������������������������������������������211
Displaying Errors Within the Browser ����������������������������������������������������������������������������������213
Logging Errors ���������������������������������������������������������������������������������������������������������������������214
Creating and Logging Custom Messages ����������������������������������������������������������������������������215
Exception Handling �������������������������������������������������������������������������������������������������������������������216
Why Exception Handling Is Handy ���������������������������������������������������������������������������������������216
PHP’s Exception-Handling Capabilities �������������������������������������������������������������������������������������218
Extending the Base Exception Class������������������������������������������������������������������������������������218
The Default Constructor �������������������������������������������������������������������������������������������������������219
Introducing the Finally Block �����������������������������������������������������������������������������������������������220
Extending the Exception Class ��������������������������������������������������������������������������������������������221
Catching Multiple Exceptions ����������������������������������������������������������������������������������������������222
Standard PHP Library Exceptions ����������������������������������������������������������������������������������������224
Error Handling in PHP 7 �������������������������������������������������������������������������������������������������������������226
Summary�����������������������������������������������������������������������������������������������������������������������������������227
Chapter 9: Strings and Regular Expressions ��������������������������������������������������������229
Regular Expressions �����������������������������������������������������������������������������������������������������������������230
Regular Expression Syntax (Perl) ����������������������������������������������������������������������������������������230
Other String-Specific Functions ������������������������������������������������������������������������������������������������241
Determining the Length of a String �������������������������������������������������������������������������������������242
Comparing Two Strings��������������������������������������������������������������������������������������������������������243
Manipulating String Case ����������������������������������������������������������������������������������������������������246
Converting Strings to and from HTML ���������������������������������������������������������������������������������248
Alternatives for Regular Expression Functions �������������������������������������������������������������������������255
Tokenizing a String Based on Predefined Characters ����������������������������������������������������������255
Exploding a String Based on a Predefined Delimiter �����������������������������������������������������������256
Converting an Array into a String ����������������������������������������������������������������������������������������257
ix