首页 > php教程 > php手册 > codeplex:PHP LINQ classes,PHP也可以使用Linq语法操作对象

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

WBOY
发布: 2016-06-06 19:59:57
原创
1053 人浏览过

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
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板