3
05/11/2024 12:33 오후
주제 스타터
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개 답글
2
05/11/2024 12:34 오후
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);