All Projects → odan → Learn Php

odan / Learn Php

Licence: mit
🐘 Learn modern PHP

Projects that are alternatives of or similar to Learn Php

Notebooks
Learn Python for free using open-source notebooks in Hebrew.
Stars: ✭ 877 (+92.75%)
Mutual labels:  learning, learn-to-code, learning-by-doing
Ziglearn
Repo for https://ziglearn.org content. Get up to speed with Zig quickly.
Stars: ✭ 135 (-70.33%)
Mutual labels:  learning, learn-to-code, learning-by-doing
Dayasadev
📗 A course to teach non-technical team members what developers do 📗
Stars: ✭ 73 (-83.96%)
Mutual labels:  learning, learn-to-code, learning-by-doing
Carmel
The Open Digital Innovation Marketplace
Stars: ✭ 136 (-70.11%)
Mutual labels:  learning, learn-to-code, learning-by-doing
50 Projects For React And The Static Web
⚛ 50 project ideas to learn by doing complete with project briefs, layout ideas, and resources!
Stars: ✭ 319 (-29.89%)
Mutual labels:  learning, learn-to-code, learning-by-doing
Javascript Exercises
📚 Collection of JavaScript exercises and coding challenges.
Stars: ✭ 385 (-15.38%)
Mutual labels:  learning, learn-to-code, learning-by-doing
Guilds
Guilds de OSW
Stars: ✭ 38 (-91.65%)
Mutual labels:  learning, learning-by-doing
js-training
JS Training Course
Stars: ✭ 39 (-91.43%)
Mutual labels:  learning, learn-to-code
Zimjs
ZIM JavaScript Canvas Framework - Code Creativity! Interactive Media For All.
Stars: ✭ 259 (-43.08%)
Mutual labels:  learning, learn-to-code
Free Courses
A collection of free courses about programming 📖
Stars: ✭ 281 (-38.24%)
Mutual labels:  learning, learn-to-code
cdi-guide-tutorials
CDI Guide And Tutorials - Many examples of how to use CDI and CDI 2.0 like Qualifiers, Interceptors, Decorators, Lazy Initialization an much more!
Stars: ✭ 29 (-93.63%)
Mutual labels:  learn-to-code, learning-by-doing
Ultimate Python
Ultimate Python study guide for newcomers and professionals alike. 🐍 🐍 🐍
Stars: ✭ 3,309 (+627.25%)
Mutual labels:  learn-to-code, learning-by-doing
Nodebook
📖 Livre publié aux Éditions Eyrolles • Première édition : Node.js v10 et npm v6.
Stars: ✭ 286 (-37.14%)
Mutual labels:  learn-to-code, learning-by-doing
python-tutorial-codes
Python 🐍 Tutorials
Stars: ✭ 23 (-94.95%)
Mutual labels:  learn-to-code, learning-by-doing
owlet-editor
A modern BBC BASIC editor inspired by the BBC Micro Bot (https://bbcmicrobot.com)
Stars: ✭ 38 (-91.65%)
Mutual labels:  learn-to-code, learning-by-doing
rust-book-fr
🇫🇷 French translation of the book "The Rust Programming Language"
Stars: ✭ 89 (-80.44%)
Mutual labels:  learning, learn-to-code
html-tutorial-exercises-course
Learn HTML with an interactive and auto-graded tutorial with dozens of exercises.
Stars: ✭ 23 (-94.95%)
Mutual labels:  learn-to-code, learning-by-doing
Golang Tutorials
Go Tutorials - Let's get our hands really dirty by writing a lot of Golang code
Stars: ✭ 277 (-39.12%)
Mutual labels:  learn-to-code, learning-by-doing
Blog
刘博文(Berwin),花名“玖五”,畅销书《深入浅出Vue.js》作者、Speaker、阿里巴巴集团前端技术专家,天猫双11大促会场消防员、现负责包含天猫双11在内的超大型营销活动的终端渲染架构与专项PM。
Stars: ✭ 3,773 (+729.23%)
Mutual labels:  learning, learn-to-code
Futurecoder
A platform for beginners to learn programming in Python
Stars: ✭ 363 (-20.22%)
Mutual labels:  learning, learning-by-doing

Learn modern PHP

A curated list of resources for PHP

Table of Contents

Must read

Tutorials

Books

Online Course

Reference

The basics

PHP Basics

The LAMP stack

HTML / HTML 5

CSS

JavaScript

Protocols

Local Development Environments

Tools

IDEs

Frameworks and libraries

Frameworks

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

Micro Frameworks

Libraries

Templates

OOP

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

SOLID

SOLID is a mnemonic acronym for five design principles intended to make software designs more understandable, flexible and maintainable

Dependency injection

Best Practices

KISS

Simplicity is prerequisite for reliability.
— Edsger W. Dijkstra

YAGNI

You Ain't Gonna Need It

DRY

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

DRY is about having one source of truth. It's not about frantically eradicating duplication from your codebase.

Other

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)

Database

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

Database libraries

Database tools

NoSQL

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

Standards

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

Errors and exception handling

Debugging

Unit testing

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

Documentation

Not commenting your code when you are a programmer should be illegal - @RiaCorpeno

PHPdoc is intended for documenting your code. The intention is that you always add comments to your parameters and return types in docblocks that describe what they do. There is software that can read in your code and produce documentation in pdf or HTML format that describes all your classes and functions as well as what they do and how to use them. It is a system for inline documentation as the name indicates.

Sessions

Text translations

Regular Expressions

XML

  • XML (Extensible Markup Language )
  • XSD (XML Schema Definition)

API

RESTful API

SOAP API

Version control

Security

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

Architecture

Domain Driven Design (DDD)

Hexagonal Architecture

Functional Programming

Continuous integration (CI) and Continuous Delivery (CD)

Magazines

Merchandise

Community / News

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].