1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 07:12:16 +01:00
Files
archived-web-php/apachecon/s_api2.php3
Rasmus Lerdorf 2424277ad8 Add main slides
1998-10-21 23:44:28 +00:00

12 lines
268 B
PHP
Executable File

<?php require "header.inc"; ?>
<H1>Variable number of function arguments</H1>
<?example(' pval *arg1, *arg2;
int ac = ARG_COUNT(ht);
if (ac < 1 || ac > 2 ||
getParameters(ht,ac,&arg1,&arg2)==FAILURE) {
WRONG_PARAM_COUNT;
}
')?>
<?php require "footer.inc"; ?>