mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-13 17:23:58 +02:00
Fixing formatting on Programming Paradigms section.
This commit is contained in:
@@ -14,15 +14,20 @@ It is important for you to namespace your code so that it may be used by other d
|
|||||||
|
|
||||||
PHP is a flexible, dynamic language that supports a variety of techniques. It has evolved dramatically over the years, notably adding a solid object-oriented model in PHP 5.0 (2004), anonymous functions and namespaces in PHP 5.3 (2009), and traits (or mixins) in PHP 5.4 (2012).
|
PHP is a flexible, dynamic language that supports a variety of techniques. It has evolved dramatically over the years, notably adding a solid object-oriented model in PHP 5.0 (2004), anonymous functions and namespaces in PHP 5.3 (2009), and traits (or mixins) in PHP 5.4 (2012).
|
||||||
|
|
||||||
* Object-oriented Programming
|
### Object-oriented Programming
|
||||||
* [Read about Object-oriented PHP][oop]
|
|
||||||
* [Read about Traits (also known as Mixins)][traits]
|
* [Read about Object-oriented PHP][oop]
|
||||||
* Functional Programming
|
* [Read about Traits (also known as Mixins)][traits]
|
||||||
* [Read about Anonymous functions][anonymous-functions]
|
|
||||||
* Read about dynamically invoking functions with [`call_user_func_array`][call-user-func-array]
|
### Functional Programming
|
||||||
* Meta Programming
|
|
||||||
* [Read about Magic Methods][magic-methods]
|
* [Read about Anonymous functions][anonymous-functions]
|
||||||
* [Read about Reflection][reflection]
|
* Read about dynamically invoking functions with [`call_user_func_array`][call-user-func-array]
|
||||||
|
|
||||||
|
### Meta Programming
|
||||||
|
|
||||||
|
* [Read about Magic Methods][magic-methods]
|
||||||
|
* [Read about Reflection][reflection]
|
||||||
|
|
||||||
## Standard PHP Library
|
## Standard PHP Library
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user