mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-20 04:54:08 +00:00
10 lines
132 B
PHP
10 lines
132 B
PHP
<?php
|
|
function functionCallback()
|
|
{
|
|
$args = func_get_args();
|
|
|
|
if ($args == ['foo', 'bar']) {
|
|
return 'pass';
|
|
}
|
|
}
|