We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Batch extraction of values from Box. Something like:
$b = bx(['var1' => 'value 1', 'var2' => 'value 2', 'var3' => 'value 3']); [$var1, $var2, $var3] = $b->batch(['var1', 'var2', 'var3']);
Especially good could be with PHP::POST() and PHP::GET().
PHP::POST()
PHP::GET()
Additionally check the dynamic name sync on the left side with a right side.
The text was updated successfully, but these errors were encountered:
php-simputils-109 Release of 1.1.3
26d0f6e
Implemented nice functionality of batch/extract for `Box` Closes #108
Implemented 2 ways of extraction of vars:
$b = bx([ 'var1' => 'value 1', 'value 2', 'var3' => 'value 3', 'var4' => 'value 4', ]); // List style of assignment [$var1, $var2, $var3] = $b->batch(['var1', 'var2', 'var3'], true); // PHP Extract style of assignment (slightly more elegant and easy to use) extract($b->batch(['var1', 'var2', 'var3']));
Don't forget specify phpdoc blocks with @var to enable auto-completion in your IDE
@var
Sorry, something went wrong.
32be00e
Successfully merging a pull request may close this issue.
Batch extraction of values from Box.
Something like:
Especially good could be with
PHP::POST()
andPHP::GET()
.Additionally check the dynamic name sync on the left side with a right side.
The text was updated successfully, but these errors were encountered: