我正在寻找一种将我的 PHP 代码组合到我的 Python 文件中的方法。也许很奇怪,但对我来说这会很有帮助。我只是想要这部分 PHP 代码在 Python 中,因为我不知道如何用 Python 重写它:(
function counter_winkelkar()
{
global $order;
global $refname;
if(isset( $_POST['clearknop'] ))
{
$_SESSION['count']= '0';
unset($_SESSION['array_products']);
unset($_SESSION['array_counting_products']);
}
if (isset( $_POST['refname'] ))
{
$_SESSION['count']= $_SESSION['count'] + $order;
print("$_SESSION[count]");
}
}
function products_winkelkar()
{
global $order;
global $db;
global $refname;
if (!isset($_SESSION['array_products']) )
{
$_SESSION['array_products'] = Array();
$_SESSION['array_counting_products'] = Array();
}
if ($order != 'number' )
{
array_push($_SESSION['array_products'],$refname);
array_push($_SESSION['array_counting_products'],$order);
}
}
function winkelkar()
{
counter_winkelkar();
products_winkelkar();
}
winkelkar();
?>