A collection of PHP scripts that are split by topics and contain code examples with explanations, different use cases and CLI Interface for Solving Exercises.
Each PHP script in this repository has the following structure: .....
- Getting Started - مقدمات
- Operators - معاملات
- Arithmetic Operators | معاملات حسابية (
+
,-
,*
,/
,%
,**
) - Bitwise Operators | معاملات البت (
&
,|
,^
,>>
,<<
,~
) - Assignment Operators | معاملات التخصيص (
=
,+=
,-=
,*-*=
,/=
) - Comparison Operator | معاملات المقارنة (
==
,===
,!=
,<>
,!==
,>
,<
,>=
,<=
,<=>
) - Logical Operators | معاملات المنطية (
and
,or
,xor
,!not
,&&
,||
) - Execution Operators | معامل التنفيذ (
backticks (``)
) - String Operators | معاملات النصية (
concatenation (.)
,concatenating assignment (.=)
) - Incrementing/Decrementing Operators | معاملات الزيادة والنقصان (
++
,--
) - Type Operators | معامل الانواع (
instanceof
)
- Arithmetic Operators | معاملات حسابية (
- Data Types - أنواع البيانات
- Control Flow
- Functions - الدوال
- Function Definition (
function
andreturn
statements) - Function Arguments (with
default
arguments) - Variable Functions
- Internal (built-in) Functions
- Anonymous Functions
- Scopes of Variables Inside Functions (
global
andlocal
statements) - Documentation Strings
- Function Definition (