Include Array From File - PHP29 Jun 2013 file.php<?phpreturn array('item1','item2');?>Your php code:<?php$thisVariable = include('file.php');print_r($thisVariable); //prints the array?>