PHP AI 核心代码,估值十个亿!

/**
 * AI核心代码,估值十个亿
 * Created by PhpStorm.
 * User: sunxyw
 * Date: 2018/12/14
 * Time: 14:37
 */

/**
 * @param string $input 输入内容
 * @author sunxyw <xy2496419818@gmail.com>
 * @return string 回应信息
 */
function handleInput($input)
{
    $input = str_replace('吗', '', $input);
    $input = str_replace('?', '!', $input);
    $input = str_replace('?', '!', $input);
    $input = str_replace('你', '我', $input);
    $input = str_replace('吧', '我', $input);

    return (string)$input;
}

while (!feof(STDIN)) {
    $input = fread(STDIN, 1024);
    echo handleInput($input);
}

请容许我当一次标题党

本作品采用《CC 协议》,转载必须注明作者和本文链接
sunxyw
《L01 基础入门》
我们将带你从零开发一个项目并部署到线上,本课程教授 Web 开发中专业、实用的技能,如 Git 工作流、Laravel Mix 前端工作流等。
《L04 微信小程序从零到发布》
从小程序个人账户申请开始,带你一步步进行开发一个微信小程序,直到提交微信控制台上线发布。
讨论数量: 4
kinyou
     $input = str_replace('吗', '', $input);
    $input = str_replace('?', '!', $input);
    $input = str_replace('?', '!', $input);
    $input = str_replace('你', '我', $input);
    $input = str_replace('吧', '我', $input);

     //相等于

    $input = str_replace(['吗','?','?','你','吧'],['','!','!','我','我'],$input);
5年前 评论
终生学习者

我估值至少是1000亿美元

5年前 评论
kinyou
     $input = str_replace('吗', '', $input);
    $input = str_replace('?', '!', $input);
    $input = str_replace('?', '!', $input);
    $input = str_replace('你', '我', $input);
    $input = str_replace('吧', '我', $input);

     //相等于

    $input = str_replace(['吗','?','?','你','吧'],['','!','!','我','我'],$input);
5年前 评论
sunxyw

@lovecn 没有啊,代码里不是写上了吗

5年前 评论

666啊胸带,这个圈搞怪的一股清流

5年前 评论

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!