Data Type Php

//array explode ( string separator, string input [, int limit] )
    $oz = "Lions and Tigers and Bears";
    $oz_array = explode(" and ", $oz);
?>