Real-time return, script execution
Good night.
I have this code:
<?php
set_time_limit(0);
function getStr($string,$start,$end) {
$str = explode($start,$string);
$str = explode($end,$str[1]);
return $str[0];
}
$user = $_GET['user'];
$id = file_get_contents('https://link.io/lookup/'.$user.'');
$id3 = getStr($id, ' <img class="cp" data-toggle="tooltip" data-placement="bottom" data-clipboard-text="[U:1:',']"');
?>
And I have a node.js script.
How can I execute my script that should pass parameters and update the script response on the page in real time?
I tried:
$data = shell_exec('node index.js '.$user.'');
var_dump($data); //Returns NULL
Thanks.
php node.js
|
show 2 more comments
Good night.
I have this code:
<?php
set_time_limit(0);
function getStr($string,$start,$end) {
$str = explode($start,$string);
$str = explode($end,$str[1]);
return $str[0];
}
$user = $_GET['user'];
$id = file_get_contents('https://link.io/lookup/'.$user.'');
$id3 = getStr($id, ' <img class="cp" data-toggle="tooltip" data-placement="bottom" data-clipboard-text="[U:1:',']"');
?>
And I have a node.js script.
How can I execute my script that should pass parameters and update the script response on the page in real time?
I tried:
$data = shell_exec('node index.js '.$user.'');
var_dump($data); //Returns NULL
Thanks.
php node.js
I can't tell what exactly you're trying to do and what exactly you need help with.
– jfriend00
Jan 20 at 4:55
I'm trying to run my script node.js and that PHP returns real-time response from the script.
– Bro Faz Sol
Jan 20 at 5:24
What does the index.js node.js script do? How does it return its result?
– jfriend00
Jan 20 at 5:28
Since you say "on the page", I assume you are running this on a web server. If so, you could implement a solution usingWebSockets
However we need more details to help you out, is your script running via CLI, or web server? What exactly isindex.js
doing?
– fyrye
Jan 20 at 5:36
Index.js
is a script that "does its job" and returns the answer little by little. See: prntscr.com/m9juyb I wanted my code in PHP to execute the script, wait for the entire response, and then return on the web, like a log.
– Bro Faz Sol
Jan 20 at 6:08
|
show 2 more comments
Good night.
I have this code:
<?php
set_time_limit(0);
function getStr($string,$start,$end) {
$str = explode($start,$string);
$str = explode($end,$str[1]);
return $str[0];
}
$user = $_GET['user'];
$id = file_get_contents('https://link.io/lookup/'.$user.'');
$id3 = getStr($id, ' <img class="cp" data-toggle="tooltip" data-placement="bottom" data-clipboard-text="[U:1:',']"');
?>
And I have a node.js script.
How can I execute my script that should pass parameters and update the script response on the page in real time?
I tried:
$data = shell_exec('node index.js '.$user.'');
var_dump($data); //Returns NULL
Thanks.
php node.js
Good night.
I have this code:
<?php
set_time_limit(0);
function getStr($string,$start,$end) {
$str = explode($start,$string);
$str = explode($end,$str[1]);
return $str[0];
}
$user = $_GET['user'];
$id = file_get_contents('https://link.io/lookup/'.$user.'');
$id3 = getStr($id, ' <img class="cp" data-toggle="tooltip" data-placement="bottom" data-clipboard-text="[U:1:',']"');
?>
And I have a node.js script.
How can I execute my script that should pass parameters and update the script response on the page in real time?
I tried:
$data = shell_exec('node index.js '.$user.'');
var_dump($data); //Returns NULL
Thanks.
php node.js
php node.js
asked Jan 20 at 3:33
Bro Faz SolBro Faz Sol
294
294
I can't tell what exactly you're trying to do and what exactly you need help with.
– jfriend00
Jan 20 at 4:55
I'm trying to run my script node.js and that PHP returns real-time response from the script.
– Bro Faz Sol
Jan 20 at 5:24
What does the index.js node.js script do? How does it return its result?
– jfriend00
Jan 20 at 5:28
Since you say "on the page", I assume you are running this on a web server. If so, you could implement a solution usingWebSockets
However we need more details to help you out, is your script running via CLI, or web server? What exactly isindex.js
doing?
– fyrye
Jan 20 at 5:36
Index.js
is a script that "does its job" and returns the answer little by little. See: prntscr.com/m9juyb I wanted my code in PHP to execute the script, wait for the entire response, and then return on the web, like a log.
– Bro Faz Sol
Jan 20 at 6:08
|
show 2 more comments
I can't tell what exactly you're trying to do and what exactly you need help with.
– jfriend00
Jan 20 at 4:55
I'm trying to run my script node.js and that PHP returns real-time response from the script.
– Bro Faz Sol
Jan 20 at 5:24
What does the index.js node.js script do? How does it return its result?
– jfriend00
Jan 20 at 5:28
Since you say "on the page", I assume you are running this on a web server. If so, you could implement a solution usingWebSockets
However we need more details to help you out, is your script running via CLI, or web server? What exactly isindex.js
doing?
– fyrye
Jan 20 at 5:36
Index.js
is a script that "does its job" and returns the answer little by little. See: prntscr.com/m9juyb I wanted my code in PHP to execute the script, wait for the entire response, and then return on the web, like a log.
– Bro Faz Sol
Jan 20 at 6:08
I can't tell what exactly you're trying to do and what exactly you need help with.
– jfriend00
Jan 20 at 4:55
I can't tell what exactly you're trying to do and what exactly you need help with.
– jfriend00
Jan 20 at 4:55
I'm trying to run my script node.js and that PHP returns real-time response from the script.
– Bro Faz Sol
Jan 20 at 5:24
I'm trying to run my script node.js and that PHP returns real-time response from the script.
– Bro Faz Sol
Jan 20 at 5:24
What does the index.js node.js script do? How does it return its result?
– jfriend00
Jan 20 at 5:28
What does the index.js node.js script do? How does it return its result?
– jfriend00
Jan 20 at 5:28
Since you say "on the page", I assume you are running this on a web server. If so, you could implement a solution using
WebSockets
However we need more details to help you out, is your script running via CLI, or web server? What exactly is index.js
doing?– fyrye
Jan 20 at 5:36
Since you say "on the page", I assume you are running this on a web server. If so, you could implement a solution using
WebSockets
However we need more details to help you out, is your script running via CLI, or web server? What exactly is index.js
doing?– fyrye
Jan 20 at 5:36
Index.js
is a script that "does its job" and returns the answer little by little. See: prntscr.com/m9juyb I wanted my code in PHP to execute the script, wait for the entire response, and then return on the web, like a log.– Bro Faz Sol
Jan 20 at 6:08
Index.js
is a script that "does its job" and returns the answer little by little. See: prntscr.com/m9juyb I wanted my code in PHP to execute the script, wait for the entire response, and then return on the web, like a log.– Bro Faz Sol
Jan 20 at 6:08
|
show 2 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54273370%2freal-time-return-script-execution%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54273370%2freal-time-return-script-execution%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I can't tell what exactly you're trying to do and what exactly you need help with.
– jfriend00
Jan 20 at 4:55
I'm trying to run my script node.js and that PHP returns real-time response from the script.
– Bro Faz Sol
Jan 20 at 5:24
What does the index.js node.js script do? How does it return its result?
– jfriend00
Jan 20 at 5:28
Since you say "on the page", I assume you are running this on a web server. If so, you could implement a solution using
WebSockets
However we need more details to help you out, is your script running via CLI, or web server? What exactly isindex.js
doing?– fyrye
Jan 20 at 5:36
Index.js
is a script that "does its job" and returns the answer little by little. See: prntscr.com/m9juyb I wanted my code in PHP to execute the script, wait for the entire response, and then return on the web, like a log.– Bro Faz Sol
Jan 20 at 6:08