https://github.com/santiagodotsh/php-notes
🐘 📝 Personal PHP notes and reference guide.
https://github.com/santiagodotsh/php-notes
control-structures data-structures match notes oop php types
Last synced: 3 months ago
JSON representation
🐘 📝 Personal PHP notes and reference guide.
- Host: GitHub
- URL: https://github.com/santiagodotsh/php-notes
- Owner: santiagodotsh
- Created: 2024-11-23T11:57:43.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-03-03T14:58:36.000Z (3 months ago)
- Last Synced: 2025-03-03T15:45:53.995Z (3 months ago)
- Topics: control-structures, data-structures, match, notes, oop, php, types
- Language: PHP
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP Notes
PHP is a popular general-purpose scripting language especially suited to web development.
## Contents
1. [Variables](./1_variables.php)
2. [Types](./2_types.php)
3. [Control Structures](./3_control-structures.php)
4. [Functions](./4_functions.php)
5. [Data Structures](./5_data-structures.php)
6. [Object-Oriented Programming (OOP)](./6_OOP.php)## Run PHP
```bash
# Run PHP built-in server
$ php -S localhost:8000 .php
```