91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在php代碼中輸出數學公式

發布時間:2020-05-11 17:56:59 來源:億速云 閱讀:467 作者:Leah 欄目:編程語言

如何在php代碼中輸出數學公式?針對這個問題,今天小編總結這篇代碼文字解析結合的文章,希望幫助更多同學解決這個問題。     

如何在php代碼中輸出數學公式

使用google的接口顯示數學公式

單行公式  

<img src="http://latex.codecogs.com/gif.latex?$(a_{1})^2+(a_{3})^2\geq%202(a_{2})^2$" />

多行公式

<img src="http://latex.codecogs.com/gif.latex?$$%20\left\{%20\begin{aligned}%200\leq%20x\leq%202%20\\%200\leq%20y\leq%202\\%20\end{aligned}%20\right.%20$$" />

如何在php代碼中輸出數學公式

$str='$$ \left\{
                   \begin{aligned}
                   x^2+3y^2=3 \\
                   y=k(x-1)\\
                   \end{aligned}
                   \right.
        $$';
    //將$$轉化為$$
    $str=str_replace("$$", "$", $str);
    // dd($str);
    $pattern='/\$(.*)\$/Us';//只能識別$$  $$
    preg_match_all($pattern,$str,$matches);
    $arr_split=preg_split($pattern,$str);
    //dd($arr_split);
    // dd($matches);
    $count=count($matches[1]);
    $str_new="";
    for($i=0;$i<count($matches[1]);$i++){
        //$arr_replace[]='<img src="http://latex.codecogs.com/gif.latex?'.$matches[1][$i].'" />';
        $matches_str=$matches[1][$i];
        // dd($str);
        //先把\\n轉換成\\\n
        $matches_str=str_replace("\\\n", "\\\\\n", $matches_str);
        // dd($matches_str);
        $matches_str=preg_replace('/\s*/', '', $matches_str);
        // dd($matches_str);
        $str_new.=$arr_split[$i];
        $str_new.='<img src="http://latex.codecogs.com/gif.latex?'.$matches_str.'" />';
    }
    if($count>0){
        echo $str_new;
    }else{
        echo $str;
    }

看完上訴內容,你們掌握在php代碼中輸出數學公式的方法了嗎?如果想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西林县| 焦作市| 隆德县| 北宁市| 北票市| 青阳县| 长治县| 开远市| 崇义县| 城市| 安多县| 宁明县| 南城县| 绥德县| 夏津县| 囊谦县| 于都县| 纳雍县| 横山县| 平谷区| 房产| 台东市| 旅游| 梁河县| 江川县| 四川省| 青神县| 顺昌县| 右玉县| 萨迦县| 白玉县| 平阴县| 屯留县| 浏阳市| 龙井市| 石狮市| 板桥市| 北海市| 清徐县| 仙桃市| 金阳县|