PHP - DB eval kodu

0 Cevap php

) (PHP eval kullanımı ile ilgili mesajların yüzlerce değil binlerce olmuştur; Bir veritabanından kod çalıştırmak için. (Kısaca açıklanmıştır) tüm arama yoluyla benim soruya bir cevap bulamadı.

Öncelikle benim uygulama size tanıtacağız.

I have three records of valid code stored in a database:
eg:
['code1']

$num1 = 1;
$num2 = 3;
$num3 = $num1+$num2;  //4

['Code2']

$num4 = $num3;        //4
$num5 = 5;
$num6 = $num4+$num5;  //9

['Code3']

$num7 = $num4;        //4
$num8 = $num6;        //9
$num9 = $num7+$num8;  //13
echo $num9;           //13

Next I have a function to call and run a record:
eg:

function runCode($codeName) {
    // assume db connection is established
    $result = mysql_query("SELECT `code` FROM CodeStore WHERE `name` = '".$codeName."'");
    if ($result) {
        // Fetch one row
        $row = mysql_fetch_assoc($result);
        if (!$row) {
            die('No rows returned.');
        } else {
            return eval($row['code']);
        }
    } else {
        die('Invalid query: '.mysql_error());
    }
}

Now, what needs to happen is to call the three above snippets, one after each other, and have the variables inside ($numX) available for use between each other.
eg:

runCode('code1');
runCode('code2');
runCode('code3');

Db gelen üç parçacıkları yukarıdaki çağrısı ''13 yankı gerekir, öyle değil. Ve benim bir soru var:

Nasıl eval'd kodu dışında bu değişkenler kullanılabilir yapabilirsiniz?

0 Cevap