hero

工作经验分享

Hello - Lihq

MORE → (opens new window)

关于自己

『一位朴实无华的程序猿』

站点描述

『平时的日志记录,技术分享,个人学习,闲聊杂谈』

平凡之路

『To be, or not to be - that is the question』

# 很高兴认识你

<?php

class Me
{
    public function find(): bool
    {
        return true;
    }

    public function met(): int
    {
        return mt_rand(1, 10000);
    }
}

class Your
{
    public function self(): int
    {
        return 1;
    }
}

$me = new Me();
$your = new Your();

while ($me->find()) {
    if ($me->met() === $your->self()) {
        echo 'Hello, World!';
        break;
    }
}

# 交个朋友吧

$ echo bGlocWluZzE0MDNAZ21haWwuY29tCg== | base64 -d