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

12 lines
283 B
PHP
Executable File

<?php require "header.inc"; ?>
<H1>Function Prototype and arguments</H1>
<?example('void php3_foo(INTERNAL_FUNCTION_PARAMETERS) {
pval *arg1, *arg2;
if (ARG_COUNT(ht) != 2 ||
getParameters(ht,2,&arg1,&arg2)==FAILURE) {
WRONG_PARAM_COUNT;
}
}');?>
<?require "footer.inc"; ?>