3
05/11/2024 12:33 pm
Topic starter
How to configure PHP Storm to work with inputs - meaning with command line (for example with readline() function), not in browser ( do not need debugging in browser). I need to create console app with php and run php as a script.
Thanks
1 Answer
2
05/11/2024 12:34 pm
Here on the screenshot you can see how to configure PHPStorm to show PHP as a script:
...and this is my program:
<?php echo "Enter your grade:"; $grade = readline(); $oldGrade = 5; $finalGrade = ($grade + $oldGrade) / 2; var_dump($finalGrade);