PHP Compiler
<!DOCTYPE html> <html> <body> <?php $str = "Learn PHP from Wikimass."; // space separator. print_r (explode(" ", $str)); ?> </body> </html>
OUTPUT
Array ( [0] => Learn [1] => PHP [2] => from [3] => Wikimass. )
×

Save as Private