中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何在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

陈巴尔虎旗| 宁强县| 汕头市| 达日县| 贵南县| 五台县| 安溪县| 德安县| 凉城县| 望都县| 三穗县| 龙江县| 秦安县| 桃源县| 大埔区| 繁昌县| 施甸县| 澜沧| 慈利县| 广平县| 庆云县| 德钦县| 交口县| 股票| 青阳县| 临清市| 玉山县| 神农架林区| 晋宁县| 寻乌县| 虹口区| 邳州市| 保亭| 衡东县| 绥芬河市| 景谷| 县级市| 宜黄县| 商南县| 云和县| 太白县|