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

PHP Estrai i codici da TextArea e passa a Mysql SELECT IN Query

Innanzitutto sul modello:

  • Non hai bisogno di alcun gruppo di acquisizione, usa semplicemente \K per riavviare la corrispondenza della stringa intera.
  • Utilizzerei '[^']*' sul primo/vuoto componente tra virgolette della stringa di input nel caso in cui del testo riempia quella posizione.

Sulla tua richiesta:

  • Non è sicuro. Non devi inserire direttamente i dati inviati dall'utente in una query per motivi di sicurezza.
  • Qui preparate le dichiarazioni con ? vengono utilizzati i segnaposto.
  • Poiché il numero di segnaposto/parametri da vincolare è variabile, la convoluzione di call_user_func_array() è richiesto.
  • Ho anche implementato bind_result() per aiutare nell'elaborazione del set di risultati.

Codice non testato:

$_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";
}