구글 번역 API를 이용한 파일 번역 php 스크립트... 아 그냥 팁 정도인데... 여기에 올리는게 맞나 모르겠네요;;;

bbaijang의 이미지

php로 만든 google translate 이용해서 짠 소스입니다.
외국 회사 소스 번역할 일이 있어서 짬내서 만들었는데... php 짱이네요 ㅠ_ㅠ

#!/usr/bin/php
<?php
    $file_name = $_SERVER['argv'];
    $file = file($file_name[1], FILE_TEXT | FILE_SKIP_EMPTY_LINES);
 
    foreach ($file as $line) {
        $trans = array();
        preg_match_all('!['
            .'\x{2E80}-\x{2EFF}' // 한중일 부수 보충
            .'\x{31C0}-\x{31EF}\x{3200}-\x{32FF}'
            .'\x{3400}-\x{4DBF}\x{4E00}-\x{9FBF}\x{F900}-\x{FAFF}'
            .'\x{20000}-\x{2A6DF}\x{2F800}-\x{2FA1F}' // 한중일 호환
            .'\x{3040}-\x{309F}' // 히라가나
            .'\x{30A0}-\x{30FF}' // 가타가나
            .'\x{31F0}-\x{31FF}'
            .']+!u', $line, $match);
 
        foreach ($match as $element) {
            foreach ($element as $value) {
 
                $response = file_get_contents('http://translate.google.co.kr/translate_a/t?client=t&ie=UTF-8&oe=UTF-8&sl=ja&tl=ko&text='.$value);
                $token = strtok($response, ",");
                $result = substr($token, 4, -1);
 
                $trans[$value] = $result;
            }
        }
 
        echo strtr($line, $trans);
    }
?>

사용법은 translate.php 번역할파일 > 번역한파일 입니다.
간단히 한자+일본어 추출해서 그 부분만 replace해서 토해냅니다.
추가로 일본어->한글만 됩니다. 다른 언어로 하실 거면 위 URL의 sl=? //source, tl=?//target
수정하시고... 위에 유니코드 preg_match_all 부분에 맞춰서 넣어주시면 됩니다.

한자, 일본어 코드 값은 http://gunenestyle.tistory.com/238 이 URL 참조해서 작업했네요.

댓글 보고 제목 수정했음돠.. str_replace가 문제가 있어서 strtr로 수정했네요 ㅎㅎ

세벌의 이미지

제목을 잘 쓰면 더 좋겠네요. 예를 들면 구글을 이용한 번역프로그램? 내용은 여기에 올려도 될 듯.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.