=') === true) {
//exec('php -S -t ' . __DIR__ . '/');
$cmd = "php -S localhost:5000 -t " . __DIR__;
$descriptors = array(
0 => array("pipe", "r"),
1 => STDOUT,
2 => STDERR,
);
$process = proc_open($cmd, $descriptors, $pipes);
if ($process === false) {
fprintf(STDERR,
"Unable to launch PHP's built-in web server.\n");
exit(2);
}
fclose($pipes[0]);
$exit = proc_close($process);
exit($exit);
} else {
echo "You must be running PHP version less than 5.4. You would have to manually host the website on your local web server.\n";
exit(2);
}
} ?>
PayPal REST API Samples
REST API Samples
These examples are created to experiment with the PayPal-PHP-SDK capabilities. Each examples
are
designed to demonstrate the default use-cases in each segment.
Many examples should be executable, and should allow you to experience the default behavior
of our
sdk, to expedite your integration experience.