An open API service indexing awesome lists of open source software.

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.

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
```