1<?php 2function functionCallback() 3{ 4 $args = func_get_args(); 5 6 if ($args == ['foo', 'bar']) { 7 return 'pass'; 8 } 9} 10