Learning PHP 7 :: learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know /
Annotation
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Birmingham, UK :
Packt Publishing,
2016.
|
Schriftenreihe: | Community experience distilled.
|
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | Annotation |
Beschreibung: | Includes index. |
Beschreibung: | 1 online resource (1 volume) : illustrations |
ISBN: | 9781785883415 1785883410 1785880543 9781785880544 |
Internformat
MARC
LEADER | 00000cam a2200000 i 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-ocn946526858 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m o d | ||
007 | cr unu|||||||| | ||
008 | 160412s2016 enka o 001 0 eng d | ||
040 | |a UMI |b eng |e rda |e pn |c UMI |d TEFOD |d OCLCF |d TEFOD |d N$T |d KSU |d DEBBG |d C6I |d DEBSZ |d YDX |d YDXCP |d IDEBK |d CEF |d NLE |d UKMGB |d ZCU |d AGLDB |d IGB |d AU@ |d STF |d UKAHL |d OCL |d RDF |d OCLCO |d OCLCQ |d OCLCO |d OCLCL |d OCLCQ | ||
015 | |a GBB6G3494 |2 bnb | ||
016 | 7 | |a 018010611 |2 Uk | |
019 | |a 945751157 |a 945979371 |a 1001309576 | ||
020 | |a 9781785883415 |q (electronic bk.) | ||
020 | |a 1785883410 |q (electronic bk.) | ||
020 | |z 9781785880544 | ||
020 | |a 1785880543 | ||
020 | |a 9781785880544 | ||
035 | |a (OCoLC)946526858 |z (OCoLC)945751157 |z (OCoLC)945979371 |z (OCoLC)1001309576 | ||
037 | |a CL0500000732 |b Safari Books Online | ||
037 | |a 58D60C89-70B5-4762-9839-811D016971DF |b OverDrive, Inc. |n http://www.overdrive.com | ||
050 | 4 | |a QA76.73.P224 | |
072 | 7 | |a COM |x 051260 |2 bisacsh | |
072 | 7 | |a COM |x 051010 |2 bisacsh | |
082 | 7 | |a 005.2762 |2 23 | |
049 | |a MAIN | ||
100 | 1 | |a Lopez, Antonio (software engineer), |e author. | |
245 | 1 | 0 | |a Learning PHP 7 : |b learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / |c Antonio Lopez. |
264 | 1 | |a Birmingham, UK : |b Packt Publishing, |c 2016. | |
300 | |a 1 online resource (1 volume) : |b illustrations | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
490 | 1 | |a Community experience distilled | |
588 | |a Description based on online resource; title from cover (viewed April 11, 2016). | ||
500 | |a Includes index. | ||
520 | 8 | |a Annotation |b Learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to knowAbout This Book Set up the PHP environment and get started with web programming Leverage the potential of PHP for server-side programming, memory management, and object-oriented programming (OOP) This book is packed with real-life examples to help you implement the concepts as you learnWho This Book Is ForIf you are a web developer or programmer who wants to create real-life web applications using PHP 7, or a beginner who wants to get started with PHP 7 programming, this book is for you. Prior knowledge of PHP, PHP 7, or programming is not mandatory.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 BehatIn DetailPHP 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.Style and approachThis book begins with the basics that all PHP developers use every day and then dives deep into detailed concepts and tricks to help you speed through development. You will be able to learn the concepts by performing practical tasks and implementing them in your daily activities, all at your own pace. | |
505 | 0 | |a Cover ; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Setting Up the Environment; Setting up the environment with Vagrant; Introducing Vagrant; Installing Vagrant; Using Vagrant; Setting up the environment on OS X; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Windows; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Ubuntu; Installing PHP; Installing MySQL; Installing Nginx; Summary | |
505 | 8 | |a Chapter 2: Web Applications with PHPThe HTTP protocol; A simple example; Parts of the message; URL; The HTTP method; Body; Headers; The status code; A more complex example; Web applications; HTML, CSS, and JavaScript; Web servers; How they work; The PHP built-in server; Putting things together; Summary; Chapter 3 : Understanding PHP Basics; PHP files; Variables; Data types; Operators; Arithmetic operators; Assignment operators; Comparison operators; Logical operators; Incrementing and decrementing operators; Operator precedence; Working with strings; Arrays; Initializing arrays | |
505 | 8 | |a Schemas and tablesUnderstanding schemas; Database data types; Numeric data types; String data types; List of values; Date and time data types; Managing tables; Keys and constraints; Primary keys; Foreign keys; Unique keys; Indexes; Inserting data; Querying data; Using PDO; Connecting to the database; Performing queries; Prepared statements; Joining tables; Grouping queries; Updating and deleting data; Updating data; Foreign key behaviors; Deleting data; Working with transactions; Summary; Chapter 6: Adapting to MVC; The MVC pattern; Using Composer; Managing dependencies; Autoloader with PSR-4 | |
650 | 0 | |a PHP (Computer program language) |v Handbooks, manuals, etc. | |
650 | 6 | |a PHP (Langage de programmation) |v Guides, manuels, etc. | |
650 | 7 | |a COMPUTERS |x Programming Languages |x JavaScript. |2 bisacsh | |
650 | 7 | |a COMPUTERS |x Programming Languages |x General. |2 bisacsh | |
650 | 7 | |a PHP (Computer program language) |2 fast | |
655 | 7 | |a Handbooks and manuals |2 fast | |
758 | |i has work: |a Learning PHP 7 (Text) |1 https://id.oclc.org/worldcat/entity/E39PCYTKdYMwF88JJWqcTfDRmm |4 https://id.oclc.org/worldcat/ontology/hasWork | ||
776 | 0 | 8 | |i Erscheint auch als: |n Druck-Ausgabe |
830 | 0 | |a Community experience distilled. |0 http://id.loc.gov/authorities/names/no2011030603 | |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1213964 |3 Volltext |
938 | |a Askews and Holts Library Services |b ASKH |n AH30547874 | ||
938 | |a EBSCOhost |b EBSC |n 1213964 | ||
938 | |a YBP Library Services |b YANK |n 12910436 | ||
938 | |a ProQuest MyiLibrary Digital eBook Collection |b IDEB |n cis34328762 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-ocn946526858 |
---|---|
_version_ | 1816882345570992128 |
adam_text | |
any_adam_object | |
author | Lopez, Antonio (software engineer) |
author_facet | Lopez, Antonio (software engineer) |
author_role | aut |
author_sort | Lopez, Antonio (software engineer) |
author_variant | a s e l ase asel |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.73.P224 |
callnumber-search | QA76.73.P224 |
callnumber-sort | QA 276.73 P224 |
callnumber-subject | QA - Mathematics |
collection | ZDB-4-EBA |
contents | Cover ; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Setting Up the Environment; Setting up the environment with Vagrant; Introducing Vagrant; Installing Vagrant; Using Vagrant; Setting up the environment on OS X; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Windows; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Ubuntu; Installing PHP; Installing MySQL; Installing Nginx; Summary Chapter 2: Web Applications with PHPThe HTTP protocol; A simple example; Parts of the message; URL; The HTTP method; Body; Headers; The status code; A more complex example; Web applications; HTML, CSS, and JavaScript; Web servers; How they work; The PHP built-in server; Putting things together; Summary; Chapter 3 : Understanding PHP Basics; PHP files; Variables; Data types; Operators; Arithmetic operators; Assignment operators; Comparison operators; Logical operators; Incrementing and decrementing operators; Operator precedence; Working with strings; Arrays; Initializing arrays Schemas and tablesUnderstanding schemas; Database data types; Numeric data types; String data types; List of values; Date and time data types; Managing tables; Keys and constraints; Primary keys; Foreign keys; Unique keys; Indexes; Inserting data; Querying data; Using PDO; Connecting to the database; Performing queries; Prepared statements; Joining tables; Grouping queries; Updating and deleting data; Updating data; Foreign key behaviors; Deleting data; Working with transactions; Summary; Chapter 6: Adapting to MVC; The MVC pattern; Using Composer; Managing dependencies; Autoloader with PSR-4 |
ctrlnum | (OCoLC)946526858 |
dewey-full | 005.2762 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.2762 |
dewey-search | 005.2762 |
dewey-sort | 15.2762 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>07030cam a2200649 i 4500</leader><controlfield tag="001">ZDB-4-EBA-ocn946526858</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr unu||||||||</controlfield><controlfield tag="008">160412s2016 enka o 001 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">UMI</subfield><subfield code="b">eng</subfield><subfield code="e">rda</subfield><subfield code="e">pn</subfield><subfield code="c">UMI</subfield><subfield code="d">TEFOD</subfield><subfield code="d">OCLCF</subfield><subfield code="d">TEFOD</subfield><subfield code="d">N$T</subfield><subfield code="d">KSU</subfield><subfield code="d">DEBBG</subfield><subfield code="d">C6I</subfield><subfield code="d">DEBSZ</subfield><subfield code="d">YDX</subfield><subfield code="d">YDXCP</subfield><subfield code="d">IDEBK</subfield><subfield code="d">CEF</subfield><subfield code="d">NLE</subfield><subfield code="d">UKMGB</subfield><subfield code="d">ZCU</subfield><subfield code="d">AGLDB</subfield><subfield code="d">IGB</subfield><subfield code="d">AU@</subfield><subfield code="d">STF</subfield><subfield code="d">UKAHL</subfield><subfield code="d">OCL</subfield><subfield code="d">RDF</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCL</subfield><subfield code="d">OCLCQ</subfield></datafield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">GBB6G3494</subfield><subfield code="2">bnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">018010611</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="019" ind1=" " ind2=" "><subfield code="a">945751157</subfield><subfield code="a">945979371</subfield><subfield code="a">1001309576</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781785883415</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1785883410</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">9781785880544</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1785880543</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781785880544</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)946526858</subfield><subfield code="z">(OCoLC)945751157</subfield><subfield code="z">(OCoLC)945979371</subfield><subfield code="z">(OCoLC)1001309576</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">CL0500000732</subfield><subfield code="b">Safari Books Online</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">58D60C89-70B5-4762-9839-811D016971DF</subfield><subfield code="b">OverDrive, Inc.</subfield><subfield code="n">http://www.overdrive.com</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">QA76.73.P224</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">COM</subfield><subfield code="x">051260</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">COM</subfield><subfield code="x">051010</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">005.2762</subfield><subfield code="2">23</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Lopez, Antonio (software engineer),</subfield><subfield code="e">author.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Learning PHP 7 :</subfield><subfield code="b">learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know /</subfield><subfield code="c">Antonio Lopez.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Birmingham, UK :</subfield><subfield code="b">Packt Publishing,</subfield><subfield code="c">2016.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource (1 volume) :</subfield><subfield code="b">illustrations</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="b">c</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="b">cr</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="490" ind1="1" ind2=" "><subfield code="a">Community experience distilled</subfield></datafield><datafield tag="588" ind1=" " ind2=" "><subfield code="a">Description based on online resource; title from cover (viewed April 11, 2016).</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Includes index.</subfield></datafield><datafield tag="520" ind1="8" ind2=" "><subfield code="a">Annotation</subfield><subfield code="b">Learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to knowAbout This Book Set up the PHP environment and get started with web programming Leverage the potential of PHP for server-side programming, memory management, and object-oriented programming (OOP) This book is packed with real-life examples to help you implement the concepts as you learnWho This Book Is ForIf you are a web developer or programmer who wants to create real-life web applications using PHP 7, or a beginner who wants to get started with PHP 7 programming, this book is for you. Prior knowledge of PHP, PHP 7, or programming is not mandatory.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 BehatIn DetailPHP 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.Style and approachThis book begins with the basics that all PHP developers use every day and then dives deep into detailed concepts and tricks to help you speed through development. You will be able to learn the concepts by performing practical tasks and implementing them in your daily activities, all at your own pace.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Cover ; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Setting Up the Environment; Setting up the environment with Vagrant; Introducing Vagrant; Installing Vagrant; Using Vagrant; Setting up the environment on OS X; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Windows; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Ubuntu; Installing PHP; Installing MySQL; Installing Nginx; Summary</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Chapter 2: Web Applications with PHPThe HTTP protocol; A simple example; Parts of the message; URL; The HTTP method; Body; Headers; The status code; A more complex example; Web applications; HTML, CSS, and JavaScript; Web servers; How they work; The PHP built-in server; Putting things together; Summary; Chapter 3 : Understanding PHP Basics; PHP files; Variables; Data types; Operators; Arithmetic operators; Assignment operators; Comparison operators; Logical operators; Incrementing and decrementing operators; Operator precedence; Working with strings; Arrays; Initializing arrays</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Schemas and tablesUnderstanding schemas; Database data types; Numeric data types; String data types; List of values; Date and time data types; Managing tables; Keys and constraints; Primary keys; Foreign keys; Unique keys; Indexes; Inserting data; Querying data; Using PDO; Connecting to the database; Performing queries; Prepared statements; Joining tables; Grouping queries; Updating and deleting data; Updating data; Foreign key behaviors; Deleting data; Working with transactions; Summary; Chapter 6: Adapting to MVC; The MVC pattern; Using Composer; Managing dependencies; Autoloader with PSR-4</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">PHP (Computer program language)</subfield><subfield code="v">Handbooks, manuals, etc.</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">PHP (Langage de programmation)</subfield><subfield code="v">Guides, manuels, etc.</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">COMPUTERS</subfield><subfield code="x">Programming Languages</subfield><subfield code="x">JavaScript.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">COMPUTERS</subfield><subfield code="x">Programming Languages</subfield><subfield code="x">General.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">PHP (Computer program language)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="655" ind1=" " ind2="7"><subfield code="a">Handbooks and manuals</subfield><subfield code="2">fast</subfield></datafield><datafield tag="758" ind1=" " ind2=" "><subfield code="i">has work:</subfield><subfield code="a">Learning PHP 7 (Text)</subfield><subfield code="1">https://id.oclc.org/worldcat/entity/E39PCYTKdYMwF88JJWqcTfDRmm</subfield><subfield code="4">https://id.oclc.org/worldcat/ontology/hasWork</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Erscheint auch als:</subfield><subfield code="n">Druck-Ausgabe</subfield></datafield><datafield tag="830" ind1=" " ind2="0"><subfield code="a">Community experience distilled.</subfield><subfield code="0">http://id.loc.gov/authorities/names/no2011030603</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1213964</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">AH30547874</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">1213964</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">YBP Library Services</subfield><subfield code="b">YANK</subfield><subfield code="n">12910436</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">ProQuest MyiLibrary Digital eBook Collection</subfield><subfield code="b">IDEB</subfield><subfield code="n">cis34328762</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
genre | Handbooks and manuals fast |
genre_facet | Handbooks and manuals |
id | ZDB-4-EBA-ocn946526858 |
illustrated | Illustrated |
indexdate | 2024-11-27T13:27:08Z |
institution | BVB |
isbn | 9781785883415 1785883410 1785880543 9781785880544 |
language | English |
oclc_num | 946526858 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource (1 volume) : illustrations |
psigel | ZDB-4-EBA |
publishDate | 2016 |
publishDateSearch | 2016 |
publishDateSort | 2016 |
publisher | Packt Publishing, |
record_format | marc |
series | Community experience distilled. |
series2 | Community experience distilled |
spelling | Lopez, Antonio (software engineer), author. Learning PHP 7 : learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / Antonio Lopez. Birmingham, UK : Packt Publishing, 2016. 1 online resource (1 volume) : illustrations text txt rdacontent computer c rdamedia online resource cr rdacarrier Community experience distilled Description based on online resource; title from cover (viewed April 11, 2016). Includes index. Annotation Learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to knowAbout This Book Set up the PHP environment and get started with web programming Leverage the potential of PHP for server-side programming, memory management, and object-oriented programming (OOP) This book is packed with real-life examples to help you implement the concepts as you learnWho This Book Is ForIf you are a web developer or programmer who wants to create real-life web applications using PHP 7, or a beginner who wants to get started with PHP 7 programming, this book is for you. Prior knowledge of PHP, PHP 7, or programming is not mandatory.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 BehatIn DetailPHP 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.Style and approachThis book begins with the basics that all PHP developers use every day and then dives deep into detailed concepts and tricks to help you speed through development. You will be able to learn the concepts by performing practical tasks and implementing them in your daily activities, all at your own pace. Cover ; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Setting Up the Environment; Setting up the environment with Vagrant; Introducing Vagrant; Installing Vagrant; Using Vagrant; Setting up the environment on OS X; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Windows; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Ubuntu; Installing PHP; Installing MySQL; Installing Nginx; Summary Chapter 2: Web Applications with PHPThe HTTP protocol; A simple example; Parts of the message; URL; The HTTP method; Body; Headers; The status code; A more complex example; Web applications; HTML, CSS, and JavaScript; Web servers; How they work; The PHP built-in server; Putting things together; Summary; Chapter 3 : Understanding PHP Basics; PHP files; Variables; Data types; Operators; Arithmetic operators; Assignment operators; Comparison operators; Logical operators; Incrementing and decrementing operators; Operator precedence; Working with strings; Arrays; Initializing arrays Schemas and tablesUnderstanding schemas; Database data types; Numeric data types; String data types; List of values; Date and time data types; Managing tables; Keys and constraints; Primary keys; Foreign keys; Unique keys; Indexes; Inserting data; Querying data; Using PDO; Connecting to the database; Performing queries; Prepared statements; Joining tables; Grouping queries; Updating and deleting data; Updating data; Foreign key behaviors; Deleting data; Working with transactions; Summary; Chapter 6: Adapting to MVC; The MVC pattern; Using Composer; Managing dependencies; Autoloader with PSR-4 PHP (Computer program language) Handbooks, manuals, etc. PHP (Langage de programmation) Guides, manuels, etc. COMPUTERS Programming Languages JavaScript. bisacsh COMPUTERS Programming Languages General. bisacsh PHP (Computer program language) fast Handbooks and manuals fast has work: Learning PHP 7 (Text) https://id.oclc.org/worldcat/entity/E39PCYTKdYMwF88JJWqcTfDRmm https://id.oclc.org/worldcat/ontology/hasWork Erscheint auch als: Druck-Ausgabe Community experience distilled. http://id.loc.gov/authorities/names/no2011030603 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1213964 Volltext |
spellingShingle | Lopez, Antonio (software engineer) Learning PHP 7 : learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / Community experience distilled. Cover ; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Setting Up the Environment; Setting up the environment with Vagrant; Introducing Vagrant; Installing Vagrant; Using Vagrant; Setting up the environment on OS X; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Windows; Installing PHP; Installing MySQL; Installing Nginx; Installing Composer; Setting up the environment on Ubuntu; Installing PHP; Installing MySQL; Installing Nginx; Summary Chapter 2: Web Applications with PHPThe HTTP protocol; A simple example; Parts of the message; URL; The HTTP method; Body; Headers; The status code; A more complex example; Web applications; HTML, CSS, and JavaScript; Web servers; How they work; The PHP built-in server; Putting things together; Summary; Chapter 3 : Understanding PHP Basics; PHP files; Variables; Data types; Operators; Arithmetic operators; Assignment operators; Comparison operators; Logical operators; Incrementing and decrementing operators; Operator precedence; Working with strings; Arrays; Initializing arrays Schemas and tablesUnderstanding schemas; Database data types; Numeric data types; String data types; List of values; Date and time data types; Managing tables; Keys and constraints; Primary keys; Foreign keys; Unique keys; Indexes; Inserting data; Querying data; Using PDO; Connecting to the database; Performing queries; Prepared statements; Joining tables; Grouping queries; Updating and deleting data; Updating data; Foreign key behaviors; Deleting data; Working with transactions; Summary; Chapter 6: Adapting to MVC; The MVC pattern; Using Composer; Managing dependencies; Autoloader with PSR-4 PHP (Computer program language) Handbooks, manuals, etc. PHP (Langage de programmation) Guides, manuels, etc. COMPUTERS Programming Languages JavaScript. bisacsh COMPUTERS Programming Languages General. bisacsh PHP (Computer program language) fast |
title | Learning PHP 7 : learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / |
title_auth | Learning PHP 7 : learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / |
title_exact_search | Learning PHP 7 : learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / |
title_full | Learning PHP 7 : learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / Antonio Lopez. |
title_fullStr | Learning PHP 7 : learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / Antonio Lopez. |
title_full_unstemmed | Learning PHP 7 : learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / Antonio Lopez. |
title_short | Learning PHP 7 : |
title_sort | learning php 7 learn the art of php programming through this example rich book filled to the brim with tutorials every php developer needs to know |
title_sub | learn the art of PHP programming through this example-rich book filled to the brim with tutorials every PHP developer needs to know / |
topic | PHP (Computer program language) Handbooks, manuals, etc. PHP (Langage de programmation) Guides, manuels, etc. COMPUTERS Programming Languages JavaScript. bisacsh COMPUTERS Programming Languages General. bisacsh PHP (Computer program language) fast |
topic_facet | PHP (Computer program language) Handbooks, manuals, etc. PHP (Langage de programmation) Guides, manuels, etc. COMPUTERS Programming Languages JavaScript. COMPUTERS Programming Languages General. PHP (Computer program language) Handbooks and manuals |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1213964 |
work_keys_str_mv | AT lopezantoniosoftwareengineer learningphp7learntheartofphpprogrammingthroughthisexamplerichbookfilledtothebrimwithtutorialseveryphpdeveloperneedstoknow |