Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

source5.php 275B

12345
  1. <?php
  2. function foo($a, array $b, array $c = array()) {}
  3. interface i { public function m($a, array $b, array $c = array()); }
  4. abstract class a { abstract public function m($a, array $b, array $c = array()); }
  5. class c { public function m($a, array $b, array $c = array()) {} }