您好,登錄后才能下訂單哦!
如何在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$$" />
$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代碼中輸出數學公式的方法了嗎?如果想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。