|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-07-16 03:10 UTC] laruence@php.net
-Status: Open
+Status: Duplicate
[2012-07-16 03:10 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 10:00:02 2025 UTC |
Description: ------------ Add 'AS' keyword after 'USE' It will work like this: function($quantity, $product) use ($tax AS $t , &$total as $a){ echo $t; //$t is the local name alias of $tax } If implemented, will be more consistent with namespace's use .. as .. statement