What is PHP? PHP is a popular general-purpose scripting language that is especially suited to web development. Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world. http://php.net @opdavies
1 2 3 // Pest. 4 5 use App\Email; 6 7 it('can be created from a valid email address', function () { 8 expect(Email::fromString('[email protected]')) 9 ->toBeInstanceOf(Email::class); 10 }); @opdavies
Feature: ls In order to see the directory structure As a UNIX user I need to be able to list the current directory's contents Scenario: List 2 files in a directory Given I am in a directory "test" And I have a file named "foo" And I have a file named "bar" When I run "ls" Then I should get: """ bar foo """ @opdavies
Things you should know about PHP • Very easy to get started • A large choice of tools and frameworks • A great worldwide community • Great learning resources • Gain experience by contributing to open source projects @opdavies