Fresh selection with links to news and materials. In the release: PHP 7.2.0, Symfony 4 and other releases, a sentence from PHP Internals, framework materials, asynchronous PHP, a portion of useful tools, and much more. Enjoy reading!
function inc(&$num) { $num++; } $i = 0; inc($i); var_dump($i); // int(1)
function inc(&$num) { $num++; } $i = 0; inc(&$i); var_dump($i); // int(1)
Thanks for attention!
If you notice an error or inaccuracy - please inform the PM .
Write questions and suggestions by mail or twitter .
Send link
Search links for all digests
← Previous release: PHP Digest number 120
Source: https://habr.com/ru/post/344360/
All Articles