Skip to content

Instantly share code, notes, and snippets.

@paramientos
Created November 29, 2020 00:20
Show Gist options
  • Save paramientos/22694a86e608b1a548c2d5511eae8e7a to your computer and use it in GitHub Desktop.
Save paramientos/22694a86e608b1a548c2d5511eae8e7a to your computer and use it in GitHub Desktop.
<?php
// before
array_fill(0, 100, 50);
// after
array_fill(start_index: 0, count: 100, value: 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment