English 中文(简体)
PHP A. 直至成功或退出的业余本
原标题:PHP Retry Script until Success or Error

I m试图制造一个存放器,在出现错误之前,再试另一个存放器,最多3次。 我想,这或许可以采用一种办法? 如果守则第一次成功实施,那么没有必要再进行三度的再研究,但是,如果它第一次做工的话,那么它就应当对“加拿大”的描述进行三度的再研究,直到出现错误的信息。

我在使用加拿大的编码时,设法用“档案-植被-污染物”从另一个地点提取了 gr/脂肪含量的文字,然后将每一字/数据作为变数。 所有这一切都是通过从其他成员那里获得滞留援助(我非常赞赏)。 下面的法典是:

$searchdata = file_get_contents( http://www.example.com );

list($no1, $no2, $no3, $no4, $no5, 
     $no6, $no7, $no8, $no9) = explode(" ", $searchdata);

因此,我要补充一下几类 lo子,把这本script改成三倍;如果它第一次工作。 为了确定文字是否在第一/二/三年期间有效,在使用“档案-植被-污染物”时,应当找到“证明书”或“证明书”。 如果除“证明书”或“证明书”以外的任何其他东西被显示为错误,则应留待发现。 如果在第三场审判之后仍然发现 t,能否展示错误信息? 例如,“Error-请再次尝试”。

感谢你提供的一切协助,我将感谢每一项答复。 如果需要更多细节,请表示可以自由要求。 我再次感谢:

问题回答
$maxTries = 3;
for ($try=1; $try<=$maxTries; $try++) {
    // your code
    if ($success) {
        break;
    }
}

// if $try > 3, script failed




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签