Skip to content

Instantly share code, notes, and snippets.

@bilalmalkoc
Created September 1, 2019 18:39
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/ba4512d736791abd83ec3c814365ba1c to your computer and use it in GitHub Desktop.
Save bilalmalkoc/ba4512d736791abd83ec3c814365ba1c to your computer and use it in GitHub Desktop.
// Doğru kullanım
$foo = array(
'echo' => false,
'include' => 1,
);
$bar = esc_html__( 'Test Yazı', 'text-domain' );
test_fonksiyon( $foo, $bar );
// Yanlış kullanım
test_fonksiyon( array( echo => false, include => 1 ), esc_html__( 'Test Yazı', 'text-domain' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment