run php server
cd path/to/your/app
php -S localhost:8000run php server
cd path/to/your/app
php -S localhost:8000run 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"); //URL of the file
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);
echo "<pre>$output</pre>";
?>run shell script from php file
echo shell_exec('sh /home/scripts/fix-perm.sh');run a php site
php -S 127.0.0.1:8000execute script php command line
php php_file.php
// or
php php_file.php > result_file.txt // to display the result of echoes or dumpsCopyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
