Try this in your php code :-
$return_array = getMovieCategories($your_movie_id);
it wil call a function getMovieCategories($movie_id)
and the result will be stored in $return_array
For more info please check this link – Function Call
solved Calling PHP Functions [closed]