Skip to content
Advertisement

PHP Interoperability – Print statements not showing in command line

I am having issues with PHP not returning print statements from Fortran. The idea is that PHP executes a command to compile a Fortran file then runs it.

You are asked to input a number via print statement, problem is there is none showing up to CMD but the program is working as intended – when I enter an “incorrect” number it waits for me to enter a “correct” number then completes execution.

How do I get the command line to print the statements nested in the Fortran file?

The PHP Script

JavaScript

Fortran Code:

JavaScript

enter image description here

EDIT – Added a new image regarding the issue @roygvib Suggested ECHO which is returning some print statements now

enter image description here

Advertisement

Answer

With a users help @roygvib I was able to find a solution to the problem.

PHP several different ways for executing files and commands – One as was used in the problem set is exec() which will execute the program and not return any output.

On the other hand there exists System() which will launch the given commands and executable and return any output that exists within the lifetime of the program execution.

TLDR: Using System instead of Exec resolved the issues I was having.

JavaScript

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement