您的位置:首页 > 职场人生

PHP 程序员就是这样撸的

2017-09-19 16:53 253 查看
<?php

$lu = init();

do {
$she = $lu('up') || $lu('down');
} while(!$she);

echo '爽!';

function init() {
playVideo('波多.mp4');

$happyLevel = 0;
return function ($direction) use (&$happyLevel) {
if (!in_array($direction, ['up', 'down'])) {
throw new Exception('方向错误,屌断!');
}

if ($direction == 'up') {
$start = 0;
$end   = 100;
} else {
$start = 100;
$end   = 0;
}
for ($i = $start; $i != $end; $i += $start < $end ? 1 : -1) {
touchDick($i);
}
return ++$happyLevel > 10000;
};
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  php 程序员
相关文章推荐