0
我需要爲我的日文網站內容製作自動furigana視圖。爲此,我嘗試了許多可能的解決方案。 在雅虎的API中有這樣做的方法。將furigana添加到網站內容
<?php
$appid = 'My api Key';
$sentence1="日本";
$sentence = mb_convert_encoding($sentence1, 'utf-8', 'auto');
echo $request = "http://jlp.yahooapis.jp/FuriganaService/V1/furigana?appid=".$appid."&sentence=".urlencode($sentence);
但是,在這個雅虎API中,我們需要將所有內容包含到一個變量中並分離成單獨的。由於我的內容是動態的,因此會花更多的時間 我需要一個自動furigana解決方案,如IPA Furigana Google Extension。 在此先感謝。
由於它會工作,我已經看到了這個github上,並再次感謝一次。 –