Я пытаюсь запросить массив с SQL-подобным синтаксисом, и я знакомлюсь с YaLinqo.
Мне удалось заставить его работать для операторов where с вышестоящими или низшими операторами, но я не могу заставить его работать с оператором equals.
Что я делаю неправильно?
Вот пример:
require_once __DIR__ . '/vendor/autoload.php';
use \YaLinqo\Enumerable;
$users = [
[
'UserId' => '1',
'username' => 'joe',
'password' => 'joepw',
'mail' => '[email protected]'
],
[
'UserId' => '2',
'username' => 'nancy',
'password' => 'nancypw',
'mail' => '[email protected]'
],
[
'UserId' => '3',
'username' => 'alice',
'password' => 'alicepw',
'mail' => '[email protected]'
]
];
$working = \YaLinqo\Enumerable::from($users)
->where('$users ==> $users["UserId"] > 2')
->toArray();
$notWorking = \YaLinqo\Enumerable::from($users)
->where('$users ==> $users["UserId"] = 2')
->toArray();
$workingAndUgly = \YaLinqo\Enumerable::from($users)
->where('$users ==> $users["UserId"] > 1')
->where('$users ==> $users["UserId"] < 3')
->toArray();
$notWorkingEither = \YaLinqo\Enumerable::from($users)
->where('$users ==> $users["username"] = "nancy"')
->toArray();
var_dump($working, $notWorking, $workingAndUgly, $notWorkingEither);
Я обнаружил, что с помощью ==
вместо =
работает:
// previously $notWorking
$nowWorking = \YaLinqo\Enumerable::from($users)
->where('$users ==> $users["UserId"] == 2')
->toArray();
// previously $notWorkingEither
$nowWorkingAlso = \YaLinqo\Enumerable::from($users)
->where('$users ==> $users["username"] == "nancy"')
->toArray();
Других решений пока нет …