Skip to content

Instantly share code, notes, and snippets.

@mehmetsarr
Created November 26, 2024 18:28
Show Gist options
  • Save mehmetsarr/b7b2535676415f9482183f05bdba3981 to your computer and use it in GitHub Desktop.
Save mehmetsarr/b7b2535676415f9482183f05bdba3981 to your computer and use it in GitHub Desktop.
PHP foreach list limit
<?php
$i = 0;
foreach($data as $key => $row){
if(++$i > 2) break;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment