github.com/palpaka/main
源代码
问题
安装: 2
依赖项: 0
建议者: 0
安全: 0
星标: 1
关注者: 1
分叉: 0
开放性问题: 0
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT 32baf626f83eafda0a6b32602064ff544cb3d6b3
This package is auto-updated.
Last update: 2024-09-16 17:39:41 UTC
使用composer安装该包
composer require palpaka/main
使用__main__函数检测脚本是否被直接调用
__main__
<?php require __DIR__ . '/vendor/autoload.php'; function main(): int { return 0; } if (__main__()) { main(); }