mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
Signature stubs for internal functions are specified in xyz.stub.php, from which we generate actual arginfo structures in xyz_arginfo.h. This file then needs to be included in the implementation appropriately. Arginfo from stubs can be regenerated using scripts/dev/gen_stub.php. However, this should also automatically happen when the stub file is modified.
5 lines
80 B
PHP
5 lines
80 B
PHP
<?php
|
|
|
|
/** @return int|false */
|
|
function array_push(array &$stack, ...$args) {}
|