在PHP中创建空数组有以下几种方法:
$emptyArray = array();
$emptyArray = [];
$emptyArray = array(); // 创建一个空数组 $nonEmptyArray = array(1, 2, 3); // 创建一个包含元素的数组