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
Stellungnahme:Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn