PHP Koans is heavily based on Greg Malcolm's Python Koans, which is based on Edgecase's Ruby Koans. Much credit to both projects. Thank you!
PHP Koans is an interactive tutorial for learning the PHP programming language by making tests pass.
Most tests are fixed by filling the missing parts of assert functions. Eg:
$this->assertEquals(__, 1+2);
which can be fixed by replacing the __
part with the appropriate code:
$this->assertEquals(3, 1+2);
Occasionally you will encounter some failing tests that are already filled out. In these cases, you will need to finish implementing some code to progress. For example, there is an exercise for writing some code that will tell you if a triangle is equilateral, isosceles or scalene.
As well as being a great way to learn some PHP, it is also a good way to get a taste of Test Driven Development (TDD).
PHP Koans is available through git on Github:
https://github.com/akoebbe/php_koans
or
Aside from downloading or checking out the latest version of PHP Koans, you need to install the PHP interpreter.
PHP Koans was written using PHP 8.1. It is recommended that you use PHP 8.1+, though it may work in earlier versions, don't hold your breath.
Only the command line interface (CLI) for PHP is needed as we will not be testing web development.
- Download the zipped binaries from https://windows.php.net/download/ (non-thread safe version is fine)
macOS bundles PHP, so you may not need to do anything depending on the version installed. To check which version you have open the Terminal app and type
php --version
If you see version 8.1 or higher, you're good to go! If not, then you will want to install a newer version with Homebrew.
- Go to https://brew.sh/
- Copy the command listed in the Install section and paste it into the Terminal app
- Follow the install instructions
- Run
brew install php
to install the latest version - Open a new terminal window or run
source ~/.bash_profile
- Run
php --version
, you should now see the latest version of PHP reported
If you are running Linux, you will use your distributions package manager to install PHP. A few common distribution methods:
apt-get install php-cli
yum install php
If that version is outdated, you can use Remi's Repository to install a newer version. See section 2.1 on Remi's site
sudo pacman -S php
If you prefer not to install php in your system, you can use a docker container.
To build the image run a terminal, go to the php_koans folder and run:
docker build . -t 'php-koans'
Every time you want to execute the suite run:
docker run -ti php-koans
From a *nix terminal or windows command prompt go to the php_koans folder and run:
php contempate_koans
In my I fire up my Terminal app and run this:
Apparently, a test failed:
Failed asserting that false is true.
It also tells me exactly where the problem is, it's an assert on line 15 of .\koans\AssertKoans.php. This one is easy, just change FALSE
to TRUE
to make the test pass.
This koans project uses Sebastian Bergmann's wonderful PHPUnit command (source code). The PHAR binary is included in this project for convenience and to lower the setup curve. It has been renamed from phpunit
to contemplate_koans
to fit with the theme of this project. See LICENSE_PHPUnit
for the relevant license information.
This project and document are a work in progress. There is still much to do and many people to thank. Please bear with me (and contribute!) as the project progresses.
These are the list of koans from Python Koans to be ported over to PHP Koans.
AboutAssertsAboutStrings- AboutNone
- AboutLists
- AboutListAssignments
- AboutDictionaries
AboutStringManipulation- AboutTuples
- AboutMethods
- AboutControlStatements
- AboutTrueAndFalse
- AboutSets
- AboutTriangleProject
- AboutExceptions
- AboutTriangleProject2
- AboutIteration
- AboutComprehension
- AboutGenerators
- AboutLambdas
- AboutScoringProject
- AboutClasses
- AboutNewStyleClasses
- AboutWithStatements
- AboutMonkeyPatching
- AboutDiceProject
- AboutMethodBindings
- AboutDecoratingWithFunctions
- AboutDecoratingWithClasses
- AboutInheritance
- AboutMultipleInheritance
- AboutScope
- AboutModules
- AboutPackages
- AboutClassAttributes
- AboutAttributeAccess
- AboutDeletingObjects
- AboutProxyObjectProject
- TelevisionTest
- AboutExtraCredit
- AboutRegex