Skip to content

Instantly share code, notes, and snippets.

@bilalmalkoc
Created August 31, 2019 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bilalmalkoc/556e2c186273bd128f7b299b5db26d19 to your computer and use it in GitHub Desktop.
Save bilalmalkoc/556e2c186273bd128f7b299b5db26d19 to your computer and use it in GitHub Desktop.
// Doğru kullanım
$args = array(
'echo' => false,
'include' => array( 1, 2 ),
);
// Yanlış kullanım
$args = [
'echo' => false,
'include' => [ 1, 2 ],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment