Skip to main
WritePHPOnline
- Start write and run your php code online
Editor
PHP Tutorial
Crontab Generator
<?php
$animals = ['Cat', 'Dog', 'Tiger', 'Lion']; $birds = ['Parrot', 'Sparrow', 'Dove'] $all = array_merge($animals, $birds); print '
'; print_r($all); print '
';
$animals = ['Cat', 'Dog', 'Tiger', 'Lion']; $birds = ['Parrot', 'Sparrow', 'Dove'] $all = array_merge($animals, $birds); print '
'; print_r($all); print '
';
Hello World!