run java script within php code example
Example 1: run php server
cd path/to/your/app
php -S localhost:8000
Example 2: call javascript function from php
// The most basic method
<?php
echo '<script type="text/javascript">',
'someJsFunc();',
'</script>';
?>
// However, if what you are trying to achieve requires more complexity,
// You might be better off adding the V8JS module, see link below
Example 3: php execute javascript
<?php
if(your condition){
echo "<script> window.onload = function() {
yourJavascriptFunction(param1, param2);
}; </script>";
?>
Example 4: run php script from another php
<?php
include('log test.php');
$output = shell_exec('php filename.php');
echo "<pre>$output</pre>";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://localhost/Ia2/Watering/tests/log%20test.php");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);
echo "<pre>$output</pre>";
?>