使用google的接口显示数学公式
单行公式 (推荐学习: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
//$arr_replace[]='';
$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.='';
}
if($count>0){
echo $str_new;
}else{
echo $str;
}