Skip to content

Instantly share code, notes, and snippets.

@tarunama
Last active August 29, 2015 14:07
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 tarunama/d771e2c73a79856ed099 to your computer and use it in GitHub Desktop.
Save tarunama/d771e2c73a79856ed099 to your computer and use it in GitHub Desktop.
[PHP] タイプヒンティング ref: http://qiita.com/tarunama/items/649e6722244216cf84da
<?php
$data = array();
$data[] = 'hoge';
$data[] = 'foo';
// この間50行くらい
// あ、$dataは配列なのか、と想定してコード読める
function typeHinting(array $data)
{
......
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment