Searched refs:shell_exec (Results 1 – 19 of 19) sorted by relevance
7 if (shell_exec('PowerShell -Help') === NULL)14 // command "get-process" is executed using shell_exec, it overwrites the ConsoleTitle with19 // back to the original once shell_exec is done.39 …$loaded_title = shell_exec("PowerShell -NoProfile \"get-process cmd*,powershell* | Select-Object m…
32 $ps_output = shell_exec("ps -p $pid -o $ps_process_title_field | tail -n 1");
42 echo trim(shell_exec($cmd)) . "\n";
8 $out = shell_exec($cmd);
10 $cat->show_output('Files: ', trim(`cd .`)); // this gives invalid args to shell_exec
49 $s = trim(shell_exec("wmic OS get FreeVirtualMemory /Value 2>nul"));
22 echo shell_exec("$php -n -f $fn");
31 $current_commit_hash = trim(shell_exec('git rev-parse origin/' . $branch));
21 $result = shell_exec('ls -i SplFileInfo_getInode_basic.txt');
32 echo shell_exec("$php -n $test_file");
21 $res = shell_exec('ps -p ' . $id .' -o "pid,nice"');
25 shell_exec("taskkill /T /F /PID {$pid} 2>nul");
50 print(shell_exec(getenv('TEST_PHP_EXECUTABLE') . " -nf code.php"));
52 print(shell_exec(getenv('TEST_PHP_EXECUTABLE') . " -n -d default_charset=cp1251 -f code.php"));
37 $out = trim(shell_exec($cmd));
999 $autoconf = shell_exec(getenv('PHP_AUTOCONF') . ' --version');1001 $autoconf = shell_exec('autoconf --version');1005 $libtool = shell_exec(INIT_DIR . '/libtool --version');1008 $sys_libtool_path = shell_exec(__DIR__ . '/build/shtool path glibtool libtool');1011 … $sys_libtool = shell_exec(str_replace("\n", "", $sys_libtool_path) . ' --version');1021 $compiler = shell_exec(getenv('CC') . " $flag 2>&1");1026 $ldd = shell_exec("ldd $php 2>/dev/null");1033 $failed_tests_data .= "Bison:\n" . shell_exec('bison --version 2>/dev/null') . "\n";1042 …$failed_tests_data .= shell_exec($php . ' -ddisplay_errors=stderr -dhtml_errors=0 -i 2> /dev/null'…
513 PHP_FUNCTION(shell_exec) argument
745 function shell_exec(string $command): string|false|null {} function
2535 ZEND_FUNCTION(shell_exec);3172 ZEND_FE(shell_exec, arginfo_shell_exec)
Completed in 49 milliseconds