Set process title PHP 5.5 function fallback

This commit is contained in:
Shoghi Cervantes Pueyo
2013-04-03 12:28:57 +02:00
parent dbc357c266
commit 683fd03f45
2 changed files with 13 additions and 1 deletions

View File

@ -25,6 +25,17 @@ the Free Software Foundation, either version 3 of the License, or
*/
if(!function_exists("cli_set_process_title")){
function cli_set_process_title($title){
if(ENABLE_ANSI === true){
echo "\x1b]0;".$title."\x07";
return true;
}else{
return false;
}
}
}
function require_all($path, &$count = 0){
$dir = dir($path."/");
$dirs = array();