Skip to main
WritePHPOnline
- Start write and run your php code online
Editor
PHP Tutorial
Crontab Generator
<?php
$first_array = array('one', 'two', 'three'); print '
'; print_r($first_array); print '
'; $second_array = ['one', 'two', 'three']; print '
'; print_r($second_array); print '
';
$first_array = array('one', 'two', 'three'); print '
'; print_r($first_array); print '
'; $second_array = ['one', 'two', 'three']; print '
'; print_r($second_array); print '
';
Hello World!