gpt4 book ai didi

php - iPhone IOS : PHP script taking too much time to execute?

转载 作者:搜寻专家 更新时间:2023-10-30 20:26:46 25 4
gpt4 key购买 nike

我正在尝试在我的应用程序中运行一个 php 脚本,该脚本将根据数据库中的变量检查用户的登录变量。下面的代码是我执行文件的方式。我正在运行脚本,然后将结果存储在数组中。 "is"结果表示用户的登录数据正确,“否”结果表示不正确。

此代码有效,但我的问题是时间。我已经设置了计时器,执行第一个 block 需要 8 秒,即使我的 php 文件是空白的。其他一切,甚至加载下一页都要快得多(最多 3 秒)

//first block
NSString * post = [NSString stringWithFormat:@"userId=%@&password=%@",userId.text,password.text];
NSString * hostStr = @"http://domain.com/check_login.php?";
hostStr = [hostStr stringByAppendingString:post];
NSURL *location = [NSURL URLWithString:hostStr];
NSDictionary *dictionaryData = [[ NSDictionary alloc ] initWithContentsOfURL:location ];

//second block
NSArray *resultArray = [dictionaryData objectForKey:@"result"];

NSArray *loginidArray = [dictionaryData objectForKey:@"loginid"];

NSArray *usernameArray = [dictionaryData objectForKey:@"username"];

同样在第一个代码块中,大约四分之一,我收到此错误“SendDelegateMessage:委托(delegate)在等待 10 秒后无法返回。主运行循环模式:_kCFURLConnectionPrivateRunLoopMode”。我一直在尝试查找它,但根据我的代码,我不知道这意味着什么。当我收到此错误时,代码可能需要 30-60 秒才能执行!!!

任何方向将不胜感激。

谢谢,

阿曼达

编辑以包含 PHP,以防了解代码中服务器端发生的情况。

<?php
header('Content-type: text/xml');
session_start();
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist SYSTEM \"file://localhost/System/Library/DTDs/PropertyList.dtd\">\n<plist version=\"1.0\">\n";

$username = "user";
$password = "pass";
$host = "localhost";
$database = "database";

// Make the connect to MySQL or die
// and display an error.
$link = mysql_connect($host, $username, $password);
if (!$link) {
die('Could not connect: ' . mysql_error());
error_log("CANT CONNECT DB");
}
else
{
error_log("DB CONNECTED");
}


mysql_select_db ($database);


$userId = $_GET['userId'];
$password = $_GET['password'];


$sql = "SELECT user_login_id,userid from user_login WHERE userId ='". $userId ."' AND password ='".$password."'";
$rs_login = mysql_query($sql, $link) or die (mysql_error());

if(mysql_num_rows($rs_login) ==1)
{

$row = mysql_fetch_array($rs_login );
$user_login_id = $row['user_login_id'];
$user_login_name = $row['userid'];

// The data that needs to be transferred:
$my_data = array();

$my_data["result"] = array("YES");
$my_data["loginid"] = array($user_login_id);
$my_data["username"] = array($user_login_name);

// Open the dictionary
echo "<dict>\n";

// Putting the data into the plist format
foreach ($my_data as $key => $array)
{
// Loop for every value in $my_data
echo " <key>$key</key>\n <array>\n"; // Make a key with the key from $my_data and open an array for it's values.
foreach ($array as $value)
{ // Go through every value in the current array from $my_data
echo " <string>$value</string>\n"; // Print the value as a string in the array
}
echo " </array>\n"; // Close the array
}

echo "</dict>\n</plist>\n"; // Close the dictionary & plist

}
else
{
$my_data["result"] = array("NO");
$my_data["loginid"] = array("--");
$my_data["username"] = array("--");

// Open the dictionary

echo "<dict>\n";

// Putting the data into the plist format
foreach ($my_data as $key => $array)
{
// Loop for every value in $my_data
echo " <key>$key</key>\n <array>\n"; // Make a key with the key from $my_data and open an array for it's values.
foreach ($array as $value)
{ // Go through every value in the current array from $my_data
echo " <string>$value</string>\n"; // Print the value as a string in the array
}
echo " </array>\n"; // Close the array
}
echo "</dict>\n</plist>\n"; // Close the dictionary & plist



}
mysql_free_result($rs_login);

?>


解决方案
这就是我的做法,现在登录只需要 4 秒...谢谢大家。

NSHTTPURLResponse * response = nil;
NSError* error = nil;

NSString * post = [NSString stringWithFormat:@"userId=%@&password=%@",userId.text,password.text];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];

NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];

NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL: [NSURL URLWithString:@"http://domainname.com/check_login.php?"]];

[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];

NSData *returnData = [NSURLConnection sendSynchronousRequest:request
returningResponse:&response
error:&error];
NSString *result = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];


NSString *errorDesc = nil;
NSPropertyListFormat format;

NSDictionary *temp = (NSDictionary *)[NSPropertyListSerialization
propertyListFromData:returnData
mutabilityOption:NSPropertyListMutableContainersAndLeaves
format:&format
errorDescription:&errorDesc];
if (!temp) {
NSLog(@"Error reading plist: %@, format: %d", errorDesc, format);
}

NSArray *resultArray = [temp objectForKey:@"result"];

NSArray *loginidArray = [temp objectForKey:@"loginid"];

NSArray *usernameArray = [temp objectForKey:@"username"];

最佳答案

NSString* res = nil;
NSHTTPURLResponse * response = nil;
NSError* error = nil;

NSString * post = [NSString stringWithFormat:@"userId=%@&password=%@",userId.text,password.text];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];

NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];

NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL: [NSURL URLWithString:@"http://domain.com/check_login.php"]];

[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];

NSData *returnData = [NSURLConnection sendSynchronousRequest:request
returningResponse:&response
error:&error];
NSString *result = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];

实际上,我只是在用上面的代码做同样的事情,我用了不到一秒钟的时间。试试吧!

同时尝试通过浏览器访问您的 check_login.php 并查看加载时间是否较长。如果是这种情况,则问题出在您的 PHP 文件上。如果它立即加载(就像它应该的那样),那就是您的 Objective-C 代码。

关于php - iPhone IOS : PHP script taking too much time to execute?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7028700/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com