タグ

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

タグの絞り込みを解除

php5.4に関するR-Hのブックマーク (7)

  • Php5.4で大きく変わった所

    Php5.4で大きく変わった所 — Presentation Transcript PHP5.4で大きく変わった所http://tamazawa.net/ プロフィール PHP5.4リリースされました!(∩´∀`)∩ワーイ たぶん・・・ 調査に使ったものgooglePHP5.4.0 trunkさくらVPSサーバーPHP5.4の説明をした後、ちょこっと作ったツールをご紹介します。 誰が何でPHP5.4の恩恵をうけるのか● プログラマ ○ 新しい機能(配列,trait,built-inWeb Server...) ○ 消えた機能(セッション関係...)● インフラエンジニア ○ ZendEngine大幅改善● ユーザー ○ パフォーマンスアップでレスポンスサクサク♪ ● プログラマ ○ 新しい機能 Short syntax for arraysPHP5.3.9以前$lang = array(j

    R-H
    R-H 2012/05/20
  • fixedpoint.jp - PHP 5.4 の scalar typehinting についての対立 (2010-08-11)

    最近 PHP の開発者の間で 5.4 向けの機能、scalar typehinting について対立があります。 Typehint という機能は既に 5.1 から object と array については提供されています: http://php.net/manual/en/language.oop5.typehinting.php 今回これらを scalar 型(int や float など)にも適用できる変更が trunk にコミットされました。そしてこれを含めて 5.4 のリリースに向けて動き出そうとしている開発者と、これに反対している開発者の間で議論が激しくなっています。 この変更によってどのような懸念があるかよく表しているポストが http://schlueters.de/blog/archives/139-Scalar-type-hints-in-PHP-trunk.html

    R-H
    R-H 2010/09/26
  • experimentalworks » Blog Archive » PHP 5.3.99-dev and DTrace Part I

    For those not following the PHP development. We backported the DTraces probes from the abandoned PHP 6.0 branch, back to the new trunk PHP 5.3.99-dev. It is called 5.3.99 because the PHP dev community has not decided yet on a version number (5.4 or 6.0). To compile PHP with DTrace, on Solaris or Mac OS do: $ svn co http://svn.php.net/repository/php/php-src/trunk php $ cd php $ ./buildconf --force

  • Prepare for PHP 6 - Core PHP

    As you may be aware the core PHP group of developers all met in Paris on November the 11th and 12th 2005. The minutes from the meeting are fascinating reading, but there is a lot to go through. So I've gone through all of the points raised and chewed them over from a developers point of view. Your comments as always are welcome. Before I get started however I'd just like to make one thing very cle

    R-H
    R-H 2010/09/26
  • PHP 5.4 RC1リリース、新機能の「行番号」や「LIST」「RUN」に注目 - bogusnews

    PHP Development Teamは26日、スクリプト言語「PHP 5.4.0」のRC1版を公開した。5.4では、将来のメジャーアップグレードを見据えつつ多数の新機能を搭載。また、既存機能の見直しをおこない、これまで足りなかった要素を追加した。PHPは5.3でgoto文を取り入れるなど野心的な改善が試みられてきたが、これでさらにスクリプト言語としての完成度が高まり便利になった。 5.4に追加された機能でもっとも特筆すべきは、やはり 「行番号」 への対応だろう。ステートメント行ごとに 10 echo “あいうえお”; 20 goto 10; のように番号ラベルを付け、順番に実行させることが可能になった。goto文と組み合わせることで無意味な無限ループを実装しやすいのが利点だ。また、番号は10単位でつけておくと、あとからあいだに新たな行を挿入できるので覚えておくとよいだろう。 さらに、E

    PHP 5.4 RC1リリース、新機能の「行番号」や「LIST」「RUN」に注目 - bogusnews
    R-H
    R-H 2010/09/24
  • goto is heartful - PHP 5.4 RC1 : 404 Blog Not Found

    2009年04月01日00:41 カテゴリ1st Day of AprilLightweight Languages goto is heartful - PHP 5.4 RC1 みなさん、お待たせしました。 PHP 5.4 RC1リリース、新機能の「行番号」や「LIST」「RUN」に注目 : bogusnews PHP Development Teamは26日、スクリプト言語「PHP 5.4.0」のRC1版を公開した。5.4では、将来のメジャーアップグレードを見据えつつ多数の新機能を搭載。また、既存機能の見直しをおこない、これまで足りなかった要素を追加した。 いよいよお披露目です。 5.4に追加された機能でもっとも特筆すべきは、やはり「行番号」への対応だろう。ステートメント行ごとに10 echo "あいうえお"; 20 goto 10;のように番号ラベルを付け、順番に実行させることが可能

    goto is heartful - PHP 5.4 RC1 : 404 Blog Not Found
    R-H
    R-H 2010/09/24
  • Array dereferencing(配列のデリファレンス)がphp-trunkに来た - Do You PHP はてブロ

    おお。。。 I was writing about new features in the upcoming PHP version (5.4, 6.0?) before. Today's topic reads like this in the NEWS file: - Added array dereferencing support. (Felipe) デリファレンスとは、参照の指す値を取り出すことで、Perlではお馴染みと思います。 たとえば、関数の戻り値が配列の場合に <?php // func()は配列を返す関数 $val = func()[2]; と書けるようになる、ということです。で、どうやらphp-trunkにcommitされた模様。 ということで、早速試してみました。 使用したPHP 201008030430付けのsnapshotです。 $ php -v PHP 5.3

    Array dereferencing(配列のデリファレンス)がphp-trunkに来た - Do You PHP はてブロ
    R-H
    R-H 2010/09/24
  • 1