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: 3 months ago
JSON representation
Some tricky php exercises and interview questions
- Host: GitHub
- URL: https://github.com/danrevah/php-exercises
- Owner: danrevah
- Created: 2015-06-20T16:51:11.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-16T22:55:08.000Z (over 7 years ago)
- Last Synced: 2025-03-27T12:06:20.478Z (4 months ago)
- Topics: interview-questions, php, php-exercise, practice
- Language: PHP
- Homepage:
- Size: 22.5 KB
- Stars: 57
- Watchers: 7
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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
```