PHP ile PostgreSQL tüm kullanıcı girdiyi

1 Cevap php

Bu soru, this thread dayanmaktadır.

Do you need the explicit sanitizing when you use pg_prepare?

Ben pg_prepare biz bu gerekmez kullanıcının giriş otomatik olarak bu tür sanitizes hissediyorum

 $question_id = filter_input(INPUT_GET, 'questions', FILTER_SANITIZE_NUMBER_INT);

Context where I use Postgres

 $result = pg_prepare($dbconn, "query9", "SELECT title, answer
     FROM answers 
     WHERE questions_question_id = $1;");                                  
 $result = pg_execute($dbconn, "query9", array($_GET['question_id']));

1 Cevap

Postgres documentation üzerine göre pg_prepare, tüm kaçan sizin için yapılır. O (yorumlar dahil) aşağıdaki kodu listeler örnekler bölümüne bakın:

<?php
// Connect to a database named "mary"
$dbconn = pg_connect("dbname=mary");

// Prepare a query for execution
$result = pg_prepare($dbconn, "my_query", 'SELECT * FROM shops WHERE name = $1');

// Execute the prepared query.  Note that it is not necessary to escape
// the string "Joe's Widgets" in any way
$result = pg_execute($dbconn, "my_query", array("Joe's Widgets"));

// Execute the same prepared query, this time with a different parameter
$result = pg_execute($dbconn, "my_query", array("Clothes Clothes Clothes"));
?>

Onlar gibi, sonra sorgu dizesi tek tırnak (') yerine çift tırnak (") kullanmak unutmayın yararlı olabilir ama $1 'kazandı t yanlışlıkla dize yansıtılmadan olsun.