タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

phpとtipsに関するsendのブックマーク (1)

  • PHP Idiosyncrasies (LINKTHINKTANK)

    Three reasons to make sure you know your programming language: <?php function test($code) { $result = @eval("return ({$code});"); print ($result ? 'true ' : 'false ') . "$code\n"; } test( "gettype(key(array('s' => ''))) == 'string'" ); test( "gettype(key(array('1' => ''))) == 'string'" ); test( "'s' == 0" ); test( "0 == 's'" ); test( "\$x == \$x++" ); test( "(int)\$x == \$x++" ); And here's

    send
    send 2007/05/01
    さっき教えてもらったところ。これは酷いはまりどころだと思う。
  • 1