PHP Code Runner
Write, run, and test PHP code snippets online.
<?php // PHP Code Runner // Write your PHP code here class Greeting { public function sayHello($name) { return "Hello, " . $name . "!"; } } $greeting = new Greeting(); echo $greeting->sayHello("Developer") . "\n"; // Array operations $fruits = ["Apple", "Banana", "Orange", "Mango"]; echo "Fruits: " . implode(", ", $fruits) . "\n"; echo "Total fruits: " . count($fruits) . "\n"; // Simple calculation $a = 15; $b = 7; echo "Sum: " . ($a + $b) . "\n"; echo "Product: " . ($a * $b) . "\n"; ?>
Basic PHP
Array Operations
Loops
Functions
▶ Run PHP Code
📋 Copy Output