Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将多个图像保存在一个数组中,但是因为图像是一个数组,所以我的方法不起作用。
这是我的方法:
for($i=2;$i<=$image_row;$i++){ $image = 'image'.$i; $allImages[] = array( 'image' => $mysqli->real_escape_string($_SESSION[$image])); }
那么为什么要在数组中定义图像呢?
为什么不简单:
for($i=2;$i<=$image_row;$i++){ $image = 'image'.$i; $allImages[] = $mysqli->real_escape_string($_SESSION[$image]); }