You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php
// The function returned by this script is run by context.php in a separate process or thread.
// $argc and $argv are available in this process as any other cli PHP script.
use Amp\Sync\Channel;
return function (Channel $channel): int {
printf("Received the following from parent: %s\n", var_export($channel->receive() , true ));
print "Sleeping for 3 seconds...\n";
sleep(3); // Blocking call in process.
$channel->send("Data sent from child.");
print "Sleeping for 2 seconds...\n";
sleep(2); // Blocking call in process.
return 42;
};
The text was updated successfully, but these errors were encountered:
hi i get error at end of consept return
i use php82 on centos 7 64 bit
error:
sms_send_select.php:
The text was updated successfully, but these errors were encountered: