????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 13.59.196.41 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/sapi/cli/tests/ |
Upload File : |
--TEST-- Check cli_process_title support in Windows --SKIPIF-- <?php if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') die("skip this test is for Windows platforms only"); if (shell_exec('PowerShell -Help') === NULL) die("skip this test requires powershell.exe"); ?> --FILE-- <?php // On Windows 8 and Server 2012, this test does not work the same way. When the PowerShell // command "get-process" is executed using shell_exec, it overwrites the ConsoleTitle with // "Windows PowerShell" and this title ONLY clears away when the php.exe process exits // i.e. the test finishes. // On older versions like Windows 7 though, running the command appends // "Windows PowerShell" to the ConsoleTitle temporarily and the title reverts // back to the original once shell_exec is done. // Hence on Windows 8, we don't verify that the title is actually set by // cli_set_process_title(). We're only making the API calls to ensure there are // no warnings/errors. $is_windows8_or_above = false; $ps_output = shell_exec("PowerShell -NoProfile \"(Get-Host).UI.RawUI.WindowTitle\""); if ($ps_output === null) { echo "Get-Host failed\n"; die(); } $ps_output = trim($ps_output); $end_title_windows8 = ": Windows PowerShell"; if (($ps_output == "Windows PowerShell") || (strlen($ps_output) > strlen($end_title_windows8) && substr($ps_output,-strlen($end_title_windows8)) === $end_title_windows8) || PHP_WINDOWS_VERSION_MAJOR >= 10) $is_windows8_or_above = true; echo "*** Testing setting the process title ***\n"; $original_title = uniqid("title", true); $pid = getmypid(); if (cli_set_process_title($original_title) === true) echo "Successfully set title\n"; if ($is_windows8_or_above) { $loaded_title = $original_title; } else { $loaded_title = shell_exec("PowerShell -NoProfile \"get-process cmd*,powershell* | Select-Object mainWindowTitle | ft -hide\""); if ($loaded_title === null) { echo "Reading title using get-process failed\n"; die(); } // Kind of convoluted. So when the test is run on Windows 7 or older, the console where // the run-tests.php is executed forks a php.exe, which forks a cmd.exe, which then forks // a final php.exe to run the actual test. But the console title is set for the original console. // I couldn't figure out a good way to navigate this, so we're "grep'ing" all possible // console windows for our very unique title. It should occur exactly once in the grep // output. if (substr_count($loaded_title, $original_title, 0) == 1) $loaded_title = $original_title; } if ($loaded_title == $original_title) echo "Successfully verified title using get-process\n"; else echo "Actually loaded from get-process: $loaded_title\n"; $read_title = cli_get_process_title(); if (substr_count($read_title, $original_title, 0) == 1) echo "Successfully verified title using get\n"; else echo "Actually loaded from get: $read_title\n"; ?> --EXPECTF-- *** Testing setting the process title *** Successfully set title Successfully verified title using get-process Successfully verified title using get