• Complain

Lopez Antonio. - Learning PHP 7

Here you can read online Lopez Antonio. - Learning PHP 7 full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

No cover

Learning PHP 7: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Learning PHP 7" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Packt Publishing, 2016. 414 p.
PHP is a great language for building web applications. It is essentially a server-side scripting language that is also used for general purpose programming. PHP 7 is the latest version with a host of new features, and it provides major backwards-compatibility breaks.This book begins with the fundamentals of PHP programming by covering the basic concepts such as variables, functions, class, and objects. You will set up PHP server on your machine and learn to read and write procedural PHP code. After getting an understanding of OOP as a paradigm, you will execute MySQL queries on your database. Moving on, you will find out how to use MVC to create applications from scratch and add tests. Then, you will build REST APIs and perform behavioral tests on your applications.By the end of the book, you will have the skills required to read and write files, debug, test, and work with MySQL.What You Will Learn:
Set up a server on your machine with PHP
Use PHP syntax with the built-in server to create apps
Apply the OOP paradigm to PHP to write richer code
Use MySQL to manage data in your web applications
Create a web application from scratch using MVC
Add tests to your web application and write testable code
Use an existing PHP framework to build and manage your applications
Build REST APIs for your PHP applications
Test the behavior of web applications with Behat

Lopez Antonio.: author's other books


Who wrote Learning PHP 7? Find out the surname, the name of the author of the book and a list of all author's works by series.

Learning PHP 7 — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Learning PHP 7" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Learning PHP 7

Table of Contents
Learning PHP 7

Learning PHP 7

Copyright 2016 Packt Publishing

All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews.

Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book.

Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information.

First published: March 2016

Production reference: 1210316

Published by Packt Publishing Ltd.

Livery Place

35 Livery Street

Birmingham B3 2PB, UK.

ISBN 978-1-78588-054-4

www.packtpub.com

Credits

Author

Antonio Lopez

Reviewer

Brad Bonkoski

Commissioning Editor

Kunal Parikh

Acquisition Editors

Nikhil Karkal

Divya Poojari

Content Development Editor

Rohit Kumar Singh

Technical Editor

Taabish Khan

Copy Editors

Shruti Iyer

Sonia Mathur

Project Coordinator

Izzat Contractor

Proofreader

Safis Editing

Indexer

Tejal Daruwale Soni

Production Coordinator

Melwyn D'sa

Cover Work

Melwyn D'sa

About the Author

Antonio Lopez is a software engineer with more than 7 years of experience. He has worked with PHP since university, which was 10 years ago, building small personal projects. Later, Antonio started his journey around Europe, working in Barcelona, London, Dublin, and back in Barcelona. He has worked in a number of different areas, from web applications to REST APIs and internal tools. Antonio likes to spend his spare time on personal projects and start-ups and has a strong vocation in education and teaching.

I would like to give thanks to my wife, Neri, for supporting me through the whole process of writing this book without going crazy.

About the Reviewer

Brad Bonkoski has been developing software for over 15 years, specializing in internal operations, systems, tools, and automation. Sometimes, this role is loosely referred to as DevOps. He leans more toward the Dev side of this misunderstood buzzword. After building an incident management system and managing change management for Yahoo, Brad became motivated by metrics and now lives by the mantra that what doesn't get measured doesn't get fixed. Today, he greases the wheels of productivity for Shazam.

www.PacktPub.com
eBooks, discount offers, and more

Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version at > for more details.

At www.PacktPub.com, you can also read a collection of free technical articles, sign up for a range of free newsletters and receive exclusive discounts and offers on Packt books and eBooks.

httpswww2packtpubcombookssubscriptionpacktlib Do you need instant - photo 1

https://www2.packtpub.com/books/subscription/packtlib

Do you need instant solutions to your IT questions? PacktLib is Packt's online digital book library. Here, you can search, access, and read Packt's entire library of books.

Why subscribe?
  • Fully searchable across every book published by Packt
  • Copy and paste, print, and bookmark content
  • On demand and accessible via a web browser
Preface

There is no need to state how much weight web applications have in our lives. We use web applications to know what our friends are doing, to get the latest news about politics, to check the results of our favorite football team in a game, or graduate from an online university. And as you are holding this book, you already know that building these applications is not a job that only a selected group of geniuses can perform, and that it's rather the opposite.

There isn't only one way to build web applications; there are actually quite a lot of languages and technologies with the sole purpose of doing this. However, if there is one language that stands out from the rest, either historically or because it is extremely easy to use, it is PHP and all the tools of its ecosystem.

The Internet is full of resources that detail how to use PHP, so why bother reading this book? That's easy. We will not give you the full documentation of PHP as the official website does. Our goal is not that you get a PHP certification, but rather to teach you what you really need in order to build web applications by yourself. From the very beginning, we will use all the information provided in order to build applications, so you can note why each piece of information is useful.

However, we will not stop here. Not only will we show you what the language offers you, but also we will discuss the best approaches to writing code. You will learn all the techniques that any web developer has to master, from OOP and design patterns such as MVC, to testing. You will even work with the existing PHP frameworks that big and small companies use for their own projects.

In short, you will start a journey in which you will learn how to master web development rather than how to master a programming language. We hope you enjoy it.

What this book covers

, Setting Up the Environment , will guide you through the installation of the different software needed.

, Web Applications with PHP , will be an introduction to what web applications are and how they work internally.

, Understanding PHP Basics , will go through the basic elements of the PHP languagefrom variables to control structures.

, Creating Clean Code with OOP , will describe how to develop web applications following the object-oriented programming paradigm.

, Using Databases , will explain how you can use MySQL databases in your applications.

, Adapting to MVC , will show how to apply the most famous web design pattern, MVC, to your applications.

, Testing Web Applications , will be an extensive introduction to unit testing with PHPUnit.

, Using Existing PHP Frameworks , will introduce you to existing PHP frameworks used by several companies and developers, such as Laravel and Silex.

, Building REST APIs , will explain what REST APIs are, how to use third-party ones, and how to build your own.

, Behavioral Testing , will introduce the concepts of continuous integration and behavioral testing with PHP and Behat.

What you need for this book

In , Setting Up the Environment , we will go through the details of how to install PHP and the rest of tools that you need in order to go though the examples of this book. The only thing that you need to start reading is a computer with Windows, OS X, or Linux, and an Internet connection.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Learning PHP 7»

Look at similar books to Learning PHP 7. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Learning PHP 7»

Discussion, reviews of the book Learning PHP 7 and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.