Rumah > Artikel > pembangunan bahagian belakang > php cli模式有什么用
CLI模式其实就是命令行运行模式,英文全称Command-Line Interface(命令行接口)
PHP-CLI模式的优势及使用场合: (推荐学习:PHP视频教程)
1.完全支持多线程
2.如上,可以实现定时任务
3.开发桌面应用就是使用PHP-CLI和GTK包
4.linux下用php编写shell脚本
以交互式Shell模式运行PHP
交互shell模式保存输入的历史命令,可以使用上下键访问到。历史被保存在~/.php_history文件。
$ php -a Interactive shell php > echo 5+8; 13 php > function addTwo($n) php > { php { return $n + 2; php { } php > var_dump(addtwo(2)); int(4)
Atas ialah kandungan terperinci php cli模式有什么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!