fork download
  1. <?php
  2.  
  3. $input = "b"; // or "b"
  4. list($a, $b) = array_pad(explode(':', $input, 2), 2, '');
  5.  
  6. echo "a is: $a";
  7. echo "==";
  8. echo "b is $b";
Success #stdin #stdout 0.03s 25640KB
stdin
Standard input is empty
stdout
a is: b==b is