recherche

Maison  >  Questions et réponses  >  le corps du texte

Extraire la valeur de l'instruction If-Else de PHP

<p>Offer.php有200到300if else语句。我的团队领导希望获得if else语句的值。我需要$_GET和=="value"的值。</p> <p><strong>Offer.php :</strong></p> <pre class="brush:php;toolbar:false;"><?php if (isset($_GET['test']) && $_GET['test'] == "one") { inclure « salut.php » ; } elseif (isset($_GET['demo']) && $_GET['demo'] == "deux") { inclure "bonjour.php" ; } elseif (isset($_GET['try']) && $_GET['try'] == "trois") { inclure "bye.php" ; } autre { inclure "default.php" ; } ?>≪/pré> <p><strong>Value.php</strong> (尝试一下) :</p> <pre class="brush:php;toolbar:false;"><?php $code = file_get_contents("offre.php"); // Expression régulière pour faire correspondre les variables $_GET et leurs valeurs correspondantes $pattern = '/isset($_GET['([^']+)'])s*&&s*$_GET['1']s*==s*"([^"]+) "/'; preg_match_all ($motif, $code, $matches); $getValues ​​= []; $valeurs = []; foreach ($correspond à $match) { $getValues[] = $match[1]; $values[] = $match[3]; } print_r($variables); print_r($valeurs); ?>≪/pré> <p><strong>Sortie attendue :</strong></p> <pre class="brush:php;toolbar:false;">Array ( [0] => test [1] => démo [2] => essayer ) Tableau ( [0] => un [1] => deux [2] => trois )</pré> <p><strong>问题:我得到了空数组的输出。</strong></p>
P粉722409996P粉722409996521 Il y a quelques jours525

répondre à tous(1)je répondrai

  • P粉395056196

    P粉3950561962023-08-09 09:33:30

    Vous essayez ceci

    <?php
    
    $code = file_get_contents("offer.php");
    
    $pattern_get = '/isset\($_GET\[\'(.*?)\'\]/';
    $pattern_value = '/$_GET\[\'(.*?)\'\]\s*==\s*"(.*?)"/';
    
    preg_match_all($pattern_get, $code, $matches_get, PREG_SET_ORDER);
    preg_match_all($pattern_value, $code, $matches_value, PREG_SET_ORDER);
    
    $getValues = [];
    $values = [];
    
    foreach ($matches_get as $match) {
        $getValues[] = $match[1];
    }
    
    foreach ($matches_value as $match) {
        $values[] = $match[2];
    }
    
    print_r($getValues);
    print_r($values);
    
    // Creating separate URLs for each $_GET variable and value
    for ($i = 0; $i < count($getValues); $i++) {
        $url = 'example.com/?' . $getValues[$i] . '=' . $values[$i];
        echo $url . '<br>' . PHP_EOL;
    }
    
    ?>

    répondre
    0
  • Annulerrépondre