Skip to content
Advertisement

Cannot pass STDIN using shell_exec() in PHP

I am a complete beginner in PHP.

I want to execute a java .jar file using PHP.The jar file takes input from STDIN and generates the output at STDOUT.To execute the jar file this is what I do in my Ubuntu Linux terminal:

JavaScript

This works perfect.However when I replicate this in PHP as:

JavaScript

This sends $p the output generated when STDIN is empty.Which definitely means that $s is not being passed.I am perfectly sure my jar file works perfectly,it’s the php script where my mistake is.Can anyone please point out my mistake? Thanks in advance.

Advertisement

Answer

Complete shot in the dark, but:

JavaScript

It could be a case that $s contains unescaped characters that ruin the command syntax.

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