fork download
  1. <?php
  2.  
  3. $genre = "animation<br> adventure<br> action";
  4. $genre = explode("<br> ", $genre);
  5.  
  6. print_r($genre);
  7.  
  8. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
Array
(
    [0] => animation
    [1] => adventure
    [2] => action
)