Skip to content

Instantly share code, notes, and snippets.

@RobbiNespu
Created April 30, 2015 16:11
Show Gist options
  • Save RobbiNespu/f5634d60b64fa205bb85 to your computer and use it in GitHub Desktop.
Save RobbiNespu/f5634d60b64fa205bb85 to your computer and use it in GitHub Desktop.
Filter "space" input
<?php
$input = "2 4"; // Input dari user
print_r(str_split($input)); // Tgk kedudukan array 0 hingga 2
$input = str_split($input);
echo "Data :".$input[0]; // Display kedudukan array[0]
echo "\n"; // Skip array[1]
echo "Data :".$input[2]; // Display kedudukan array[2]
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment