Files
static-php-cli/src/globals/common-tests/embed.c

13 lines
346 B
C
Raw Normal View History

2024-12-10 23:08:01 +08:00
#include <sapi/embed/php_embed.h>
2026-04-16 18:06:27 +07:00
int main(int argc, char **argv) {
PHP_EMBED_START_BLOCK(argc, argv)
2024-12-10 23:08:01 +08:00
zend_file_handle file_handle;
2026-04-16 18:06:27 +07:00
zend_stream_init_filename(&file_handle, "embed.php");
if(!php_execute_script(&file_handle)) {
2024-12-10 23:08:01 +08:00
php_printf("Failed to execute PHP script.\n");
}
PHP_EMBED_END_BLOCK()
return 0;
2025-07-22 12:42:45 +07:00
}