我想使用此php-language-api 我觉得它很棒但只有文字 它不能与HTML文本一起使用 见
$text = htmlspecialchars('<a href="test.php">test.php</a>');
$str = Google_Translate_API::translate($text, 'en', 'ar');
或
$text = '<a href="test.php">test.php</a>';
$str = Google_Translate_API::translate($text, 'en', 'ar');
在这两种情况下它的效果不佳
答案 0 :(得分:-1)
你试过了吗?
$text = '<a href="test.php">test.php</a>';
$str = Google_Translate_API::translate(strip_tags($text), 'en', 'ar');