mirror of
https://github.com/e107inc/e107.git
synced 2025-10-12 13:34:39 +02:00
10 lines
132 B
PHP
10 lines
132 B
PHP
<?php
|
|
function functionCallback()
|
|
{
|
|
$args = func_get_args();
|
|
|
|
if ($args == ['foo', 'bar']) {
|
|
return 'pass';
|
|
}
|
|
}
|