sql >> Database teknologi >  >> RDS >> Mysql

PHP Uddrag koder fra TextArea og videregive til Mysql SELECT IN Query

Først om mønsteret:

  • Du behøver ikke nogen opsamlingsgrupper, brug bare \K for at genstarte fuldstrengsmatchen.
  • Jeg ville bruge '[^']*' på den første/tomme enkeltstående komponent i din inputstreng, bare hvis noget tekst fylder denne position.

Om din forespørgsel:

  • Det er usikkert. Du må ikke direkte indsætte brugerindsendte data i en forespørgsel af sikkerhedsmæssige årsager.
  • Her udarbejdet udsagn med ? pladsholdere bruges.
  • Fordi antallet af pladsholdere/parametre, der skal bindes, er variable, er foldningen af ​​call_user_func_array() er påkrævet.
  • Jeg har også implementeret bind_result() for at hjælpe med behandlingen af ​​resultatsættet.

Ikke-testet kode:

$_POST['newfeatured']="new myProduct('', 'bbc_609'),
new myProduct('', '35857'),";

if(preg_match_all("/new (?:my|featured)Product\('[^']*', '\K[^']*/",$_POST['newfeatured'],$prd_ids)){
    $params=$prd_ids[0];  // the fullstring matches
    $count=count($params);  // number of fullstring matches
    $csph=implode(',',array_fill(0,$count,'?'));  // comma-separated placeholders

    $query="SELECT A.productid, A.name, A.brand, B.code
            FROM product A
            INNER JOIN price B ON A.productid=B.productid
            WHERE A.productid IN ($csph);";

    $stmt=$mysqli->prepare($query);  // for security reasons

    array_unshift($params,str_repeat('s',$count));  // prepend the type values string
    $ref=[];  // add references
    foreach($params as $i=>$v){
        $ref[$i]=&$params[$i];  // pass by reference as required/advised by the manual
    }
    call_user_func_array([$stmt,'bind_param'],$ref);    

    $stmt->execute();
    $stmt->bind_result($id,$name,$brand,$code);
    while($stmt->fetch()){
        echo "Whatever you want to do with the results: $id, $name, $brand, $code\n";
    }
    $stmt->close();
}else{
    echo "bonk";
}



  1. MySQL-forespørgsel ved hjælp af CASE til at VÆLGE flere kolonner

  2. PostgreSQL midlertidige tabeller

  3. MySQL-tabelpartition efter måned

  4. Har Mysql en ækvivalent til @@ROWCOUNT som i mssql?