Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/danrevah/php-exercises

Some tricky php exercises and interview questions
https://github.com/danrevah/php-exercises

interview-questions php php-exercise practice

Last synced: about 1 month ago
JSON representation

Some tricky php exercises and interview questions

Awesome Lists containing this project

README

        

# PHP Exercises
> Some basic and advanced php exercises and interview questions.

It's using the TDD approach so make sure to check the test.php file inside each exercise directory to find out what exactly needs to be done.
Write your solution as the index.php file, inside the exercise directory and run the tests using PHPUnit.

### Dependencies:
PHPUnit: https://phpunit.de/manual/current/en/installation.html

### Workflow:
```bash
[~] $ git clone https://github.com/danrevah/php-exercises.git
[~] $ cd php-exercises
[php-exercises] $ cd once
[once] $ touch index.php
[once] $ phpunit test.php
```