Skip to content

Commit

Permalink
upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdullahKaram-Dev committed May 1, 2022
1 parent 40a959c commit d3b3fe4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cli.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@ function checkIsCli():string
return (in_array(php_sapi_name(), $validCli)) ? 'cli' : 'not cli';
}

echo checkIsCli();
echo checkIsCli();
exec('ls',$output);
print_r($output);
readline_add_history('ls');
print_r(readline_list_history());

0 comments on commit d3b3fe4

Please sign in to comment.