-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
Description
youtube-code-examples/php8.1-news/src/3-fibers-basics.php
Lines 21 to 26 in d972fd3
| echo "🌍 Arrancando TODO!\n"; | |
| $valorDeLaPrimeraSuspension = $fiber->start("Valor inicial 🌍"); | |
| echo "🌍 Vamos a reanudar la fibra. MSG: $valorDeLaPrimeraSuspension!\n"; | |
| $valorDeLaSegundaSuspension = $fiber->resume('Esto viene del 🌍'); | |
| echo "🌍 La segunda suspensión nos ha dicho que $valorDeLaSegundaSuspension!\n"; | |