Standard yakpro file
- Usually starts with goto(sometimes start with use),end with empty label.
Example:
- start:goto D88059b976794947e073ca458d1ba173;
- end : Bf7f129ea071d53365b8777658a4a40a:
2. Usually contains two consecutive labels.
Example:
b0a022b8af8b6c2adf5930aac80afed2:
f910baafd3e4f03c3300cecb6c15a36c:
3. Three sentences in one stanza. The last line of stanza is start with goto
Example:
c00ae3b381dc179053ad7245fb275f31:
fb315f14999557d244da50fd07c4bb54:
goto a1586966acaac34793747a624696117b;
Ff3871d7f54cb835d5b7bf1c9a7f8411:
$this->delay = true;
goto cebfc0d67eea6d108e491a71759372be;
Non-standard yakpro file
1.start with goto or not start with goto
2. Multiple statements continue until the end of the statement.
Example:
goto LABEL_20;
LABEL_1:
exit( 0 );
LABEL_2:
register_shutdown_function('shutdown');
require(str_replace('\', '/', dirname($argv[0])) . '/../www/init.php');
cli_set_process_title('BLA[Lines Logs]');
goto LABEL_40;

Leave a comment