ホームページ > php教程 > php手册 > codeplex:PHP LINQ classes,PHP也可以使用Linq语法操作对象

codeplex:PHP LINQ classes,PHP也可以使用Linq语法操作对象

WBOY
リリース: 2016-06-06 19:59:57
オリジナル
1052 人が閲覧しました

Examples can be found in the test package in the latest release. A basic example Let's say we have an array of strings and want to select only the strings whose length is 5. The PHPLinq way of achieving this would be the following: // Crea

Examples can be found in the test package in the latest release.

A basic example

Let's say we have an array of strings and want to select only the strings whose length is
// Create data source
$names = array("John", "Peter", "Joe", "Patrick", "Donald", "Eric"); 

$result = from('$name')->in($names)
            ->where('$name => strlen($name) select('$name'); 
ログイン後にコピー

Feels familiar to SQL? Yes indeed! No more writing a loop over this array, checking the string's length, and adding it to a temporary variable. 
You may have noticed something strange... What's that $name => strlen($name)

http://www.weiqinxue.cn/blogs/index.php/User/articleview/ArticleID/U2A15

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート