运行 ❯
获取您自己的
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>