pastebin
Add a new paste
View all pastes
Change language
Dutch
English
French
Russian
menu
URL Shortener
Multiple URL shortener
browser info
Whois IP and domain lookup
Capture a Website screenshot
Disqus Chatroom
Registration
pastebin
Paste Search Dynamic
Recent pastes
Adambrooks
7 minutes ago
cnt
5 hours ago
warning infinitely in
5 hours ago
BHPSOGWO
5 hours ago
Arrays associate
5 hours ago
Schedule
5 hours ago
Arrays associate error
5 hours ago
test
5 hours ago
ArrayList
6 hours ago
mainloop
6 hours ago
fork
<?php
$pid
= pcntl_fork
(
)
;
if
(
$pid
)
{
// parent process runs what is here
print
'padre: valore di $pid '
.
$pid
.
"n"
;
}
else
{
// child process runs what is here
print
'figlio: valore di $pid '
.
$pid
.
"n"
;
}
?>
Parsed in 0.021 seconds