<?phpfunction newSubGen(){ yield 1;function newGen(){ $r2 = (yield 2); yield 3;}$task = new AsyncTask(newGen());echo $r; // output: 3