PHP AI 核心程式碼,估值十個億!

sunxyw發表於2018-12-14
/**
 * 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 協議》,轉載必須註明作者和本文連結

相關文章