Skip to content
This repository has been archived by the owner on Oct 2, 2020. It is now read-only.

PHPSC/learn-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Resources for PHP

elephpant

Table of Contents

Must read

Tutorials

Videos

Books

Online schools

Reference

LAMP: Linux, Apache, MySql, PHP

The LAMP stack:

HTML / HTML 5

CSS

JavaScript

Protocols

Tools

IDEs

Graphic tools

Frontend

  • jQuery (The most widely deployed JavaScript library, DOM manipulation, Ajax)
  • HTML5
  • CSS
  • Bootstrap (The most popular HTML, CSS, and JS framework in the world)
  • Font Awesome (The web’s most popular icon set)

Webdesign

View libraries (frontend)

Templating

Frameworks

  • CakePHP (A MVC, CRUD, Scaffolding framework, inpired by Ruby on Rails)
  • Laravel (A very popular framework)
  • Symfony (A modular enterprise framework)
  • Zend (A modular enterprise fraemwork)

Micro Frameworks

Libraries

Model-View-Controller

Most frameworks in PHP follow some sort of MVC structure. The theory is simple:

The user interfaces with the view, which passes information to a controller. The controller then passes that information to a model (layer), and the model passes information back to the controller. The controller effectively stands between the view and the model. (Brandon James Savage)

Object-oriented programming

"Write shy code -
modules that don't reveal anything unnecessary to other
modules and that don't rely on other modules' implementations."

Design patterns

Best Practices

KISS

Simplicity is prerequisite for reliability.
— Edsger W. Dijkstra

YAGNI

DRY

"DRY ‐ Don't Repeat Yourself
Every piece of knowledge must have a single,
unambiguous, athoritative representation within a system."

SOLID

Other

Database basics

Relational database management system (RDBMS)

Database books

Database normalization

Bad programmers worry about the code. Good programmers worry about data structures and their relationships.

Prepared Statements

NoSQL

  • NoSQL
  • Redis (In-memory data structure store, used as a database, cache and message broker)
  • MongoDB (Document-oriented database)

Database libraries

Database tools

Standards

Follow common PHP conventions for object-oriented code, and established industry best practices: PSR-1, PSR-2, PSR-4.

Errors and exception handling

Debugging

Unit testing

“Software testers do not make software; they only make them better.” – Anonymous

Documentation

Code never lies, comments sometimes do.

PHP Sessions

Router and Dispatcher

Text translations

Dependency injection

Regular Expresions

  • todo

RESTful API

  • todo

SOAP API

  • todo

Version control

Security

A good programmer looks both ways before crossing a one-way street.

Architecture

Domain Driven Design (DDD)

Continuous integration (CI) and Continuous Delivery (CD)

Community / News

Releases

No releases published

Packages

No packages published