PHP Code Snippet
PHP Sandbox Online PHP editor | 3v4l.org PHP Sandbox | onlinephp.io PHP.net Supported Versions | PHP.net Unsupported Branches | PHP.net References PHP News, Articles, Upcoming Changes, and more | PHP.Watch brew tap shivammathur/php brew tap shivammathur/extensions PHP CLI # 查看 PHP 编译时的参数 php -r "phpinfo();" | grep configure # 查看 .ini 配置文件路径 php --ini php -r "phpinfo();" | grep "Configuration File" # 查看 Modules php -m # 显示 PHP 信息 php -i php -i | grep -E "Loaded Configuration|Scan this dir" php -r "echo ini_get('memory_limit');" php -r "phpinfo();" | grep memory # 显示扩展配置 php --ri gd # 检查扩展是否存在 php --re decimal # 交互式运行模式。具有函数、常量、类名、变量、静态方法调用和类常量的 `tab` 补全功能 # http://php.net/manual/en/features.commandline.interactive.php php -a # 检查 PHP-FPM 配置文件语法 php-fpm -tt Snippets // 临时设置最大内存占用 ini_set('memory_limit', '1024M'); // 设置脚本最大执行时间为 0 永不过期 set_time_limit(0); Composer aliyun repo 阿里云 Composer 全量镜像 ...