如何在ajax中工作时打印php变量值

时间:2017-01-29 08:05:17

标签: php

在下面的php代码执行ajax调用,但我想检查$ cart_final变量值,但它没有打印虽然我已经使用了die函数。请建议我任何解决方案。

if(!empty($_SESSION['shopping_cart']['item']) && $_SESSION['shopping_cart']['item']['meal_dish_type']==$meal_dish_type)
{
      $item[]=array('meal_type'=>$meal_type,'meal_package'=>$meal_package,'meal_time'=>$meal_time,'meal_plan_days'=>$meal_plan_days,'meal_dish_type'=>$meal_dish_type,'prefixed_qty'=>$prefixed_qty,'prefixed_date'=>$prefixed_date,'cart_plan'=>$cart_total,'product_rule'=>$product_rule,'prefixed_date_item'=>$prefixed_date_item);

       //$dish=array_push($dish,$item);
     $cart_final = array_merge($_SESSION['shopping_cart']['item'], $item);

        print_r($cart_final); die;// i want to print this value
       $_SESSION['shopping_cart']['item'] = $cart_final;

       //$_SESSION['shopping_cart']['item'] = $dish;
       $_SESSION['shopping_cart']['cart_total'] =  $cart_total*$prefixed_qty;


}

1 个答案:

答案 0 :(得分:0)

您可以在开发人员工具,网络中看到您的ajax输出。文件及其输出将在ajax调用后显示。您将看到由ajax调用的php文件的名称及其详细信息。我用这种方式,因为我可以检查变量,也可以看到警告,错误或通知。

Developer tools, network