執行 ❯
獲取您
自己的 PHP
伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php // Preserve parameter set to true: $a=array("red","green","blue","yellow","brown"); print_r(array_slice($a,1,2,true)); // Preserve parameter set to false (default): $a=array("red","green","blue","yellow","brown"); print_r(array_slice($a,1,2,false)); // Note the differences in the array keys ?> </body> </html>