Schneespur — Open-source winter service documentation software (PWA + Admin). GPS tracking via OwnTracks, weather data, photo evidence, and legally compliant service records for winter maintenance operators. License: AGPL-3.0-or-later
20 lines
795 B
PHP
20 lines
795 B
PHP
<?php
|
|
return [
|
|
'array_key_exists',
|
|
'is_executable',
|
|
'is_uploaded_file',
|
|
'stream_is_local',
|
|
'is_soap_fault',
|
|
'oci_lob_copy', // Type hints to object OCI-Lob (weird class that has a dash in its name!)
|
|
'func_get_arg',
|
|
'call_user_func_array',
|
|
'mb_check_encoding',
|
|
'array_search',
|
|
'forward_static_call',
|
|
'forward_static_call_array',
|
|
'readdir', // the documentation is false: the function returns false at the end of the iteration
|
|
'apcu_delete', // apcu_delete returns false when the $key does not exist in the cache store
|
|
'filter_has_var', // this function is meant to return a boolean
|
|
'array_multisort', // this function is too buggy, see PR #113 on GitHub
|
|
'libxml_get_last_error', // returns false to mean "everything is fine"
|
|
];
|