2

アプリから mysql データベースにヘブライ語のテキストを挿入しようとしていますが、値がデータベースに挿入されません。この方法は英語では機能しますが、ヘブライ語のテキストには問題があります。テキストのガベージ値を表示している間、dbに挿入されません。

目的のCコードは

-(void)updateDatabase{

NSURL *url = [NSURL URLWithString:@"http://site.com/api/"];
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];
NSDictionary *params = [[NSDictionary alloc] initWithObjectsAndKeys:image_name, @"image_name", invoice_no, @"invoice_no", photoReason, @"photo_reason", photoReasonText, @"photo_reason_text", txtField_1.text, @"user_info_1", txtField_2.text , @"user_info_2", txtField_3.text, @"user_info_3", txtField_4.text, @"user_info_4", txtField_5.text, @"user_info_5", txtField_6.text, @"user_info_6", txtField_7.text, @"user_info_7", nil];

NSLog(@"Params: %@", [params valueForKey:@"user_info_6"]);

NSMutableURLRequest *request = [httpClient requestWithMethod:@"POST" path:@"upload_info.php" parameters:params];

AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];

[operation setUploadProgressBlock:^(NSInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
    NSLog(@"Sent %lld of %lld bytes", totalBytesWritten, totalBytesExpectedToWrite);
}];
[operation  setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {

    NSLog(@"success: %@", operation.responseString);

    SBJSON *parser = [[SBJSON alloc] init];
    NSMutableArray *statuses = [parser objectWithString:operation.responseString error:nil];
    int status = [[statuses valueForKey:@"status"] integerValue];
    if (status == 0) {
        invoice_no = [statuses valueForKey:@"invoice_no"];
        NSLog(@"Invoice No: %@", statuses);
        percentLabel.text = @"80%";
        [self pushView:4];

        [self pay];
    }

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Success" message:@"Card Images Are Uploaded." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
    percentLabel.text = @"70%";

}
                                  failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                                      NSLog(@"error: %@",  operation.responseString);


                                      UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error..." message:operation.responseString delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
                                      [alert show];

                                  }];
[operation start];

}

そしてphpコードは

<?php

include "constants.php";

$APIVersion = "1.0";
$commandName = $commandUploadInfo;

$image_name         = $_POST['image_name'];
$invoice_no         = $_POST['invoice_no'];
$photo_reason       = $_POST['photo_reason'];
$photo_reason_text  = $_POST['photo_reason_text'];
$user_info_1        = $_POST['user_info_1'];
$user_info_2        = $_POST['user_info_2'];
$user_info_3        = $_POST['user_info_3'];
$user_info_4        = $_POST['user_info_4'];
$user_info_5        = $_POST['user_info_5'];
$user_info_6        = $_POST['user_info_6'];
$user_info_7        = $_POST['user_info_7'];

$link = mysql_pconnect($dbhost, $dbuser, $dbpass)
or
die("{\"method\":\"".$commandName."\",".
    "\"version\":\"".$APIVersion."\",".
    "\"status\":-2,".
    "\"message\":\"Could not connect to database\",".
    "\"debug\":\"".mysql_error()."\"".
    "}");

mysql_select_db($dbname)
or
die("{\"method\":\"".$commandName."\",".
    "\"version\":\"".$APIVersion."\",".
    "\"status\":-2,".
    "\"message\":\"Could not select database\",".
    "\"debug\":\"".mysql_error()."\"".
    "}");


$insertSQL = "INSERT INTO ".
"`image_info2`(
 `image_name` ,
 `invoice_no` ,
 `photo_reason` ,
 `photo_reason_text` ,
 `user_info_1` ,
 `user_info_2` ,
 `user_info_3` ,
 `user_info_4` ,
 `user_info_5` ,
 `user_info_6` ,
 `user_info_7`
)".
"VALUES ('$image_name', '$invoice_no', '$photo_reason', '$photo_reason_text', '$user_info_1', '$user_info_2', '$user_info_3', '$user_info_4', '$user_info_5', '$user_info_6', '$user_info_7');";

mysql_query($insertSQL)
or
die("{\"method\":\"".$commandName."\",".
    "\"version\":\"".$APIVersion."\",".
    "\"status\":-2,".
    "\"message\":\"Failed to execute query\",".
    "\"debug\":\"".mysql_error()."\"".
    "}");

echo "{".
"\"method\":\"" . $commandName . "\",".
"\"version\":\"" . $APIVersion . "\",".
"\"status\":0,".
"\"id\":\"Info uploaded successfully\"".
"}";

?>

4

2 に答える 2

1

ヘブライ語のテキストを含む列の照合順序を次のいずれかに設定する必要があります。

  • utf8_general_ci- 大文字と小文字を区別しない一致の場合
  • utf8_general_cs- 大文字と小文字を区別する一致の場合。

PHP を使用して MySQL にヘブライ語のテキストを挿入する (ガベージ テキスト)

于 2013-09-19T22:11:20.700 に答える
0

ヘブライ語の問題を解決しました。これは、データベースとテーブルの行/フィールドのエンコーディングの問題でした。これが私が使用した解決策です。私は別の回答から助けを得ました。誰かが必要な場合に備えて、リンクを以下に示します。

  1. db 照合順序は である必要がありますutf8_general_ci
  2. テーブルとヘブライ語の照合は、utf8_general_ci
  3. 私のphp接続スクリプトに入れましたheader('Content-Type: text/html; charset=utf-8');
  4. 私のxhtmlヘッドタグに入れました<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. 接続スクリプトでデータベースを選択した後、私は入れましたmysql_query("SET NAMES 'utf8'");

その後、問題は解決しました。

最初の答えは私を助け、そこからそれを取りました

于 2013-09-21T04:11:10.330 に答える